curl PHP API请求

elcex8rz  于 2022-11-13  发布在  PHP
关注(0)|答案(1)|浏览(252)

有没有人可以帮助我的API我有一个API应该得到参数
https://app.wappapi.in/api/send.php?number=9198480xxxxx&type=text&message=test-message&instance_id=609ACF283XXXX&access_token=e10adcxxxxba59axxx56e0xxxxxxxxxx在post方法中
问题是,如果我像使用这个上帝一样发送它,它会像需要的那样得到它吗?

<?php
$curl = curl_init();

$number=$_POST['type'];
$message=$_POST['type'];
$id=$_POST['type'];
$token=$_POST['type'];
curl_setopt_array($curl, array(
  CURLOPT_URL => "https://app.wappapi.in/api/send.php",
  CURLOPT_POSTFIELDS => "number={$number}type=text&message={$message}&instance_id={$id}&access_token={$token}",
  CURLOPT_TIMEOUT => 30,
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_SSL_VERIFYHOST => 0,
  CURLOPT_SSL_VERIFYPEER => 0,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "POST"));
$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
  echo "cURL Error #:" . $err;
} else {
  echo $response;
}
?>
mkh04yzy

mkh04yzy1#

不要使用CURLOPT_POSTFIELDS,因为查询参数随URI一起提供
而应:

CURLOPT_URL => "https://app.wappapi.in/api/send.php?number={$number}"
    ."&type=text&message={$message}&instance_id={$id}&access_token={$token}",
CURLOPT_POST => 1

希望它解决了你的问题。

相关问题