我正在查看 Android 的推送通知教程:https://www.sinch.com/tutorials/send-push-notifications-android-messaging-app-using-gcm/ ,我想知道如何应用相同的逻辑,但不使用提供的后端,而是使用 Parse 后端。
//url of where your backend is hosted, can't be local!
HttpPost httppost = new HttpPost("http://your-domain.com?reg_id=" + regId);
所以我想使用 Parse,但是我应该在 HttpPost 构造函数的参数中放入什么?
最佳答案
按照解析教程 https://parse.com/tutorials/android-push-notifications 进行操作并发布推送对,您查看过我们的 ManagedPush 吗?其 super 简单 https://www.sinch.com/learn/sinch-managed-push-calling-android/不需要解析或您自己的后端
关于java - 使用 Sinch 和 Parse 的 Android 推送通知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31224995/