一尘不染

Google GCM服务器返回未经授权的错误401

php

我正在使用GCM服务从服务器推送信息。如果我使用浏览器密钥,它将成功消息显示为: {“
multicast_id”:4849013215736515938,“ success”:1,“ failure”:0,“
canonical_ids”:0,“ results”:[{“ message_id”:“ 0:
1348742583011905%2adac3a0f9fd7ecd“}]},
但我在设备上未收到任何通知。而且,如果我使用服务器密钥,它将显示
未授权错误401 。我的代码如下所示:

$apiKey = "xxxxx";
$registrationIDs = array("xxxxxxxx");
$message = "testing Process";
$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_SSL_VERIFYHOST, 0);
curl_setopt ($ch, CURLOPT_SSL_VERIFYPEER, 0); 
curl_setopt( $ch, CURLOPT_POSTFIELDS, json_encode($fields) );

$result = curl_exec($ch);
if(curl_errno($ch)){ echo 'Curl error: ' . curl_error($ch); }
curl_close($ch);
echo $result;

请帮我解决这个问题。提前致谢。


阅读 440

收藏
2020-05-26

共1个答案

一尘不染

您是否将服务器IP列入白名单?默认情况下,浏览器密钥不是必需的,但服务器密钥是必需的。

您可以在这里检查:

https://code.google.com/apis/console/#project:[您的项目号]:访问权限

2020-05-26