我在做第一次使用gcm的android應用程序。我無法將消息通知推送給使用多播的用戶。我已經爲個人用戶實施!請建議一種在JSON中實現HTTP POST請求的方式,以此作爲初學者。 在此先感謝GCM Json Post方法
-1
A
回答
0
問題只是發送HTTP POST請求?如果是這樣,谷歌排球是實現一個很好的API,檢查出
0
在GCM Architecture,你的「後臺」(第三方服務器)將消息發送到GCM服務器,那麼他們最終會到達設備。在「後端」
典型的代碼是這樣(JAVA):
Sender sender = new Sender(API_KEY);
Message msg = new Message.Builder().addData("message", message).build();
List<RegistrationRecord> records = getTheListOfDeviceIdsYouWantToReceiveTheMessage();
for(RegistrationRecord record : records) {
Result result = sender.send(msg, record.getRegId(), 5);
if (result.getMessageId() != null) {
log.info("Message sent to " + record.getRegId());
} else {
String error = result.getErrorCodeName();
if (error.equals(Constants.ERROR_NOT_REGISTERED)) {
log.warning("Registration Id " + record.getRegId() + " no longer registered with GCM, removing from datastore");
// if the device is no longer registered with Gcm, remove it from the datastore
}
else {
log.warning("Error when sending message : " + error);
}
}
}
沒有看到你的代碼,這將是很難幫助你在這一點上。
相關問題
- 1. HTTP POST JSON方法
- 2. 獲得JSON的POST方法
- 3. GCM onRegistered()方法
- 4. 從Java或JS POST到GCM
- 5. 爲HttpClient準備Json對象Post方法
- 6. 使用$ .Ajax()與POST方法發送JSON
- 7. Python從POST方法中抓取JSON
- 8. 來自POST方法的JSON文件android
- 9. 如何解析json的post方法?
- 10. JSON ARG遊戲不繼POST方法
- 11. 玩Scala - 有沒有JSON的POST方法
- 12. POST方法
- 13. NSJsonSerialization POST方法,
- 14. WCF WebInvoke方法POST
- 15. 將POST JSON數據從Android POST到PHP的正確方法
- 16. 海報post方法和jquery post方法有什麼區別?
- 17. 使用POST方法
- 18. AFNetworking - 使用JSON參數POST方法:var = {} JSON
- 19. Slim POST方法和AngularJs Http POST請求
- 20. Selenium Post方法
- 21. 與POST方法
- 22. 從Post方法
- 23. POST方法
- 24. post方法ajax
- 25. HttpWebRequest,post方法
- 26. POST方法
- 27. 與POST方法
- 28. Html.ActionLink Post方法
- 29. WCF POST方法
- 30. HTTP POST方法HTTP GET方法