PHP 使用 nexmo 发送短信

PHP send SMS with nexmo

我正在使用 nexmo 服务向特定号码 IN HEBREW 发送短信,但消息到达时为 %D7%AA%D7。 (我的语言是PHP),这是我的代码:

$message = $_REQUEST["message"];

//Build the url 
$url = 'https://rest.nexmo.com/sms/json?' . http_build_query(
    [
      'api_key' =>  '******',
      'api_secret' => '*******',
      'to' => '9725433131',
      'from' => '4416329600',
      'text' => urlencode($message)
    ]
);
//Send the data
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_ENCODING, 'UTF-8');
$response = curl_exec($ch);

echo $response;

尝试在请求中添加 type 参数。

//Build the url 
$url = 'https://rest.nexmo.com/sms/json?' . http_build_query(
[
      'api_key' =>  '******',
      'api_secret' => '*******',
      'to' => '9725433131',
      'from' => '4416329600',
      'text' => urlencode($message),
      'type' => 'unicode'
    ]
);

您可以 find 在 nexmo 文档页面中获得更多信息。