我正在开发 Android 中的推送通知。在服务器端,我实现了这段代码:
$apiKey = "";
$registrationIDs = array( "" );
$message = "hello";
$url = 'https://android.googleapis.com/gcm/send';
$fields = array(
'registration_ids' => $registrationIDs,
'data' => array( "message" => $message ),
);
$headers = array(
'Authorization: key=' . $apiKey,
'Content-Type: application/json'
);
$ch = curl_init();
curl_setopt( $ch, CURLOPT_URL, $url );
curl_setopt( $ch, CURLOPT_POST, true );
curl_setopt( $ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt( $ch, CURLOPT_RETURNTRANSFER, true );
curl_setopt( $ch, CURLOPT_POSTFIELDS, json_encode( $fields ) );
$result = curl_exec($ch);
curl_close($ch);
echo $result;
我正在使用 Xampp。第一次运行此代码浏览器时,未定义 curl 时出现致命错误。然后在 php.ini 文件中,我取消注释行 extension=php.curl.dll 并重新启动 apache 服务器,然后再次运行这段代码,它没有给出任何错误但没有回显结果。我是服务器端的新手,任何帮助将不胜感激