3 回答
TA贡献1796条经验 获得超10个赞
您可以使用https://www.smslink.ro上的SMSLink API在罗马尼亚发送 SMS。您可以选择 HTTP(S) GET / POST、SOAP / WSDL 或 JSON API,甚至是 Mail to SMS。
TA贡献1871条经验 获得超13个赞
您可以使用以下 URL:
https
://rapidapi.com/dimashirokov/api/Plivo 首先检查 curl 示例,以便获得正确的响应。
下面是 curl 示例的代码:
$api_key = '';
$from = 'From name';
$to = '123456789';
$message = 'Test SMS';
$target_url="";
$post = array('from' => $from,'to'=>$to,"message"=>$message,"api-key"=>$api_key);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$target_url);
curl_setopt($ch, CURLOPT_POST,1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
$result=curl_exec ($ch);
curl_close ($ch);
echo $result;
您需要为上述代码添加适当的数据,以便获得响应。
TA贡献1775条经验 获得超11个赞
您可以使用 Twilio、Nexmo 等发送 SMS,甚至通过 localhost。其中一些为您提供免费测试信用,但这仅用于测试目的。
您可以使用他们的 API,请参阅:- https://www.twilio.com/docs/usage/api以获取更多参考。
阅读文档,实现起来很简单。
- 3 回答
- 0 关注
- 190 浏览
添加回答
举报