中的问题
嗨,当我以阿拉伯语 language 发送标题或主体时,使用PHP推出通知FCM 结果错误:
JSON_PARSING_ERROR:位置0。
的意外令牌文件末端
只是阿拉伯语
这是我的代码:
<?php
define( 'API_ACCESS_KEY', 'my api server key');
$registrationIds = ('token')
$msg = array
(
'body' => 'هلاو',
'title' => 'مرحبا',
'icon' => 'myicon',/*Default Icon*/
'sound' => 'mySound'/*Default sound*/
);
$fields = array
(
'to' => $registrationIds,
'notification' => $msg
);
$headers = array
(
'Authorization: key=' . API_ACCESS_KEY,
'Content-Type: application/json',
);
#Send Reponse To FireBase Server
$ch = curl_init();
curl_setopt( $ch,CURLOPT_URL, 'https://fcm.googleapis.com/fcm/send' );
curl_setopt( $ch,CURLOPT_POST, true );
curl_setopt( $ch,CURLOPT_HTTPHEADER, $headers );
curl_setopt( $ch,CURLOPT_RETURNTRANSFER, true );
//curl_setopt( $ch,CURLOPT_SSL_VERIFYPEER, false );
curl_setopt( $ch,CURLOPT_POSTFIELDS, json_encode( $fields ) );
$result = curl_exec($ch );
curl_close( $ch );
echo $result;
我需要帮助可能是编码
将您的.php
文件编码更改为UTF-8
。
来自记事本 Encode -> Encode in UTF-8
,然后保存文件。