Google GCM服务器返回未经授权的错误401
我正在使用GCM服务从服务器推送信息。如果我使用浏览器密钥,它将成功消息显示为: 但我在设备上未收到任何通知。而且,如果我使用服务器密钥,它将显示
。我的代码如下所示:
$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;
请帮我解决这个问题。提前致谢。
回答:
您是否将服务器IP列入白名单?默认情况下,浏览器密钥不是必需的,但服务器密钥是必需的。
您可以在这里检查:
https://code.google.com/apis/console/#project:[您的项目号]:访问权限
以上是 Google GCM服务器返回未经授权的错误401 的全部内容, 来源链接: utcz.com/qa/405474.html