gpt4 book ai didi

php - 无法使用 notification_key 向组发送通知,即使可以通过 regId

转载 作者:行者123 更新时间:2023-11-29 16:01:09 26 4
gpt4 key购买 nike

我编写了一些 php 代码,我能够使用 regId 向设备发送通知。

我还设法创建了一组 regId,成功接收了 notification_key,如 google documentation 中所述.

但我无法向群组发送通知。我尝试使用相同的方法发送通知,但我没有使用 regId,而是使用在创建组时从 GCM 收到的 notification_key,但这种方法不起作用,它给了我 NotRegistered 错误。如果我尝试使用相同的 notification_key_name 注册,GCM 会说它已经注册。

我不确定我是否必须通过其他方法发送它,或者我是否做错了什么。

  • 当我使用 regId 发送通知时,我收到了这条消息来自 GCM:

    {"multicast_id":517...442,"success":2,"failure":0,"canonical_ids":0,"results":[{"message_id":"0:140...ecd "},{"message_id":"0:140...ecd"}]}

  • 当我创建组时,我收到来自 GCM 的这条消息:

    {"notification_key":"APA91....nz9Q"}

  • 当我尝试使用在上面的消息中收到的 notification_key 将消息发送到群组时,我从 GCM 收到了这条消息:

    {"multicast_id":80...63,"success":0,"failure":1,"canonical_ids":0,"results":[{"error":"NotRegistered"}]}

  • 当我尝试使用相同的 notification_key_name 再次创建组时,我从 GCM 收到了这条消息:

    {"error":"notification_key 已经存在"}

下面是我正在使用的代码。

<?php

class GCM {
const GOOGLE_API_KEY= " *** MY API KEY ***"; // Place your Google API Key
const PROJECT_KEY= " *** MY PROJECT KEY ***";


function __construct() {

}

/**
* Sending Push Notification
*/
public function send_notification($registatoin_ids, $message) {

$url = 'https://android.googleapis.com/gcm/send';

$fields = array(
'registration_ids' => $registatoin_ids,
'data' => $message
);

$headers = array(
'Authorization: key=' . self::GOOGLE_API_KEY,
'Content-Type: application/json'
);
// Open connection
$ch = curl_init();

// Set the url, number of POST vars, POST data
curl_setopt($ch, CURLOPT_URL, $url);

curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

// Disabling SSL Certificate support temporarly
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);

curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($fields));


$result = curl_exec($ch);
if ($result === FALSE) {
die('Curl failed: ' . curl_error($ch));
}

// Close connection
curl_close($ch);
echo $result;
}

public function requestNotificationKeyFromGCM($registatoin_ids, $username) {
//Google cloud messaging GCM-API url
$url = 'https://android.googleapis.com/gcm/notification';
$request = array(
'operation' => 'create',
'notification_key_name' => $username,
'registration_ids' => $registatoin_ids,
);

$headers = array(
'Authorization: key=' . self::GOOGLE_API_KEY,
'project_id: ' . self::PROJECT_KEY,
'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, false);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($request));
$result = curl_exec($ch);

if ($result === FALSE) {
die('Curl failed: ' . curl_error($ch));
}
curl_close($ch);
echo $result;
}
}

?>

最佳答案

我在尝试发送带有通知 key 的 gcm 时遇到了类似的问题。文档中存在问题。而不是使用:

curl -vvv -X POST --header "Content-Type: application/json" --header "project_id: <YOUR-PROJECT-ID>" --header "Authorization: key=<YOUR-PROJECT-SECRET-KEY>" --data @- "https://android.googleapis.com/gcm/send" << EOF
{
"registration_ids": ["<REGISTRATION-ID-FROM-DEVICE>"],
"data": {},
}
EOF

你必须使用:

curl -vvv -X POST --header "Content-Type: application/json" --header "project_id: <YOUR-PROJECT-ID>" --header "Authorization: key=<YOUR-PROJECT-SECRET-KEY>" --data @- "https://android.googleapis.com/gcm/send" << EOF
{
"to": "<NOTIFICATION-ID>",
"data": {},
}
EOF

你可以在我的博文中看到更多:https://medium.com/appunite-edu-collection/d7df385b0ff4

关于php - 无法使用 notification_key 向组发送通知,即使可以通过 regId,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24560739/

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