使用 Java gcm-server 向主题发送消息
Using Java gcm-server to send message to topic
我正在使用 Java gcm-server to send messages to Android client apps, and I would like to send a message to a specific topic as showed here。
我的问题是我只能使用发件人 class 向列表 registration_ids 发送消息,但我不知道如何使用参数 "to": "/topics/myTopic"(看了源码好像没有实现)。
有什么建议吗?
是的,现在...尚未实施,
您需要向
发出 HTTP POST 请求
https://android.googleapis.com/gcm/send
和body
{
"data":
{
"title": "Test Title",
"message":“您的留言”
},
"to":“/topics/global”
}
我正在使用 Java gcm-server to send messages to Android client apps, and I would like to send a message to a specific topic as showed here。
我的问题是我只能使用发件人 class 向列表 registration_ids 发送消息,但我不知道如何使用参数 "to": "/topics/myTopic"(看了源码好像没有实现)。
有什么建议吗?
是的,现在...尚未实施,
您需要向
发出 HTTP POST 请求https://android.googleapis.com/gcm/send
和body
{ "data": { "title": "Test Title", "message":“您的留言” },
"to":“/topics/global”
}