我正在寻找一个PHP
脚本,使用SMS
/ API
等Nexmo
等发送Twillio
。
是否有PHP
脚本用于使用SMS
Nexmo
发送快速API
条消息?
答案 0 :(得分:0)
答案 1 :(得分:0)
我使用过Nexmo-PHP-Lib,并能够向加拿大的手机发送短信。
答案 2 :(得分:0)
以下是发送短信的方法:)
<?php
$url = 'https://rest.nexmo.com/sms/json?' . http_build_query([
'api_key' => API_KEY,
'api_secret' => API_SECRET,
'to' => YOUR_NUMBER,
'from' => NEXMO_NUMBER,
'text' => 'Hello from Nexmo'
]);
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
API文档:
https://docs.nexmo.com/index.php/sms-api/send-message https://nexmo.github.io/Quickstarts/sms/send/