我正在我的应用程序中实现Google Cloud Messaging。服务器代码尚未准备就绪,由于某些防火墙限制,在我的环境中,我无法为推送通知部署测试服务器。我要寻找的是一个在线服务器,它将向我的设备发送一些测试通知以测试我的客户端实现。
我正在我的应用程序中实现Google Cloud Messaging。服务器代码尚未准备就绪,由于某些防火墙限制,在我的环境中,我无法为推送通知部署测试服务器。我要寻找的是一个在线服务器,它将向我的设备发送一些测试通知以测试我的客户端实现。
Answers:
找到了一种非常简单的方法来执行此操作。
在框中粘贴以下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网址为:https : //fcm.googleapis.com/v1/projects/YOUR_GOOGLE_CONSOLE_PROJECT_ID/messages : send
注意:在Google Developer Console上创建API访问密钥时,必须使用0.0.0.0/0作为IP地址。(出于测试目的)。
如果收到来自GCM服务器的无效注册响应,请交叉检查设备令牌的有效性。您可以使用以下网址检查设备令牌的有效性:
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
API KEY
,因为将密钥交给他们并不安全。
邮递员:Google Chrome扩展程序
使用邮递员发送消息而不是服务器。邮递员设置如下:
Request Type: POST
URL: https://android.googleapis.com/gcm/send
Header
Authorization : key=your key //Google API KEY
Content-Type : application/json
JSON (raw) :
{
"registration_ids":["yours"],
"data": {
"Hello" : "World"
}
}
成功的话你会得到
Response :
{
"multicast_id": 6506103988515583000,
"success": 1,
"failure": 0,
"canonical_ids": 0,
"results": [
{
"message_id": "0:1432811719975865%54f79db3f9fd7ecd"
}
]
}
Pushwatch是我自己在Django / Python中开发的可免费使用的在线GCM和APNS推送通知测试器,因为我在处理多个项目时遇到了类似的情况。它可以发送GCM
和APNS
通知,还支持JSON消息以获取额外的参数。以下是测试人员的链接。
如果您有任何疑问或使用它时遇到问题,请告诉我。
邮递员是一个很好的解决方案,php小提琴也是。但是,为避免每次都输入GCM URL和标头信息,您也可以使用此漂亮的GCM通知测试工具