我正在尝试从网站发送批量短信..所以我使用 api..我已经$sendString
为使用 api..的确切 url 创建了变量。但由于某种原因,cURL 函数不适用于这个特定的 URL ...
我尝试使用这个 api 的另一个函数来检查我的信用余额并且它有效......我什至尝试将$sendString
变量手动粘贴到链接框中并且它有效!所以我知道 cURL 和 api 都在工作,但不是为了从网站发送我的文本......有什么想法吗?
//Create a new cURL resource
$ch = curl_init();
//Set URL and other appropriate options
curl_setopt($ch, CURLOPT_URL, "$sendString");
curl_setopt($ch, CURLOPT_HEADER, 0);
//Grab URL and pass it to the browser
curl_exec($ch);
//Close cURL resource, and free up system resources
curl_close($ch);