gpt4 book ai didi

Android:在线测试推送通知(Google Cloud Messaging)

转载 作者:IT老高 更新时间:2023-10-28 13:04:52 25 4
gpt4 key购买 nike

Update: GCM is deprecated, use FCM

我正在我的应用程序中实现 Google Cloud Messaging。服务器代码还没有准备好,在我的环境中,由于一些防火墙限制,我无法为推送通知部署测试服务器。我正在寻找的是一个在线服务器,它将向我的设备发送一些测试通知以测试我的客户端实现。

最佳答案

找到了一种非常简单的方法。

打开 http://phpfiddle.org/

在框中粘贴以下 php 脚本。在php脚本中设置API_ACCESS_KEY,设置设备id,以逗号分隔。

按 F9 或单击运行。

玩得开心;)

<?php


// API access key from Google API's Console
define( 'API_ACCESS_KEY', 'YOUR-API-ACCESS-KEY-GOES-HERE' );


$registrationIds = array("YOUR DEVICE IDS WILL GO HERE" );

// prep the bundle
$msg = array
(
'message' => 'here is a message. message',
'title' => 'This is a title. title',
'subtitle' => 'This is a subtitle. subtitle',
'tickerText' => 'Ticker text here...Ticker text here...Ticker text here',
'vibrate' => 1,
'sound' => 1
);

$fields = array
(
'registration_ids' => $registrationIds,
'data' => $msg
);

$headers = array
(
'Authorization: key=' . API_ACCESS_KEY,
'Content-Type: application/json'
);

$ch = curl_init();
curl_setopt( $ch,CURLOPT_URL, 'https://android.googleapis.com/gcm/send' );
curl_setopt( $ch,CURLOPT_POST, true );
curl_setopt( $ch,CURLOPT_HTTPHEADER, $headers );
curl_setopt( $ch,CURLOPT_RETURNTRANSFER, true );
curl_setopt( $ch,CURLOPT_SSL_VERIFYPEER, false );
curl_setopt( $ch,CURLOPT_POSTFIELDS, json_encode( $fields ) );
$result = curl_exec($ch );
curl_close( $ch );

echo $result;
?>

对于 FCM,Google 网址为:https://fcm.googleapis.com/fcm/send

对于 FCM v1,google url 为:https://fcm.googleapis.com/v1/projects/YOUR_GOOGLE_CONSOLE_PROJECT_ID/messages:send

注意:在谷歌开发者控制台上创建 API 访问 key 时,你必须使用 0.0.0.0/0 作为 ip 地址。 (用于测试目的)。

如果收到来自 GCM 服务器的无效注册响应,请交叉检查您的设备 token 的有效性。您可以使用以下网址检查您的设备 token 的有效性:

https://www.googleapis.com/oauth2/v1/tokeninfo?access_token=YOUR_DEVICE_TOKEN

一些响应代码:

以下是您可能从服务器收到的一些响应代码的描述。

{ "message_id": "XXXX" } - success
{ "message_id": "XXXX", "registration_id": "XXXX" } - success, device registration id has been changed mainly due to app re-install
{ "error": "Unavailable" } - Server not available, resend the message
{ "error": "InvalidRegistration" } - Invalid device registration Id
{ "error": "NotRegistered"} - Application was uninstalled from the device

关于Android:在线测试推送通知(Google Cloud Messaging),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22168819/

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