我正在使用textlocal SMS网关为我的应用程序发送SMS。
现在,我想要从帐户中发送短信的历史记录,因为我遵循的是document of textlocal
为此,我已经完成了以下代码
// Account details
$apiKey = urlencode('Your apiKey');
// Prepare data for POST request
$data = array('apikey' => $apiKey);
// Send the POST request with cURL
$ch = curl_init('https://api.textlocal.in/get_history_api/');
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close($ch);
// Process your response here
echo "<pre>"; print_r($response);
但是我得到
{“错误”:[{“代码”:3,“消息”:“无效的登录详细信息”}},“状态”:“失败”}
根据API Documentation,您应该传递我正在curl请求中发送的api密钥,但仍然会得到无效的登录详细信息响应。
任何帮助将不胜感激。
谢谢!