gpt4 book ai didi

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

转载 作者:IT老高 更新时间:2023-10-28 12:49:39 32 4
gpt4 key购买 nike

我正在使用 GCM 服务从服务器推送信息。如果我使用浏览器 key ,它会将成功消息显示为: {"multicast_id":4849013215736515938,"success":1,"failure":0,"canonical_ids":0,"results":[{"message_id": "0:1348742583011905%2adac3a0f9fd7ecd"}]}但我没有在设备上收到任何通知。如果我使用服务器 key ,它会显示 Unauthorized Error 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;

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

最佳答案

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

你可以在这里查看:

https://code.google.com/apis/console/#project:[您的项目编号]:access

关于php - Google GCM 服务器返回未经授权的错误 401,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12619759/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com