从Web界面发送Parse JSON Push

时间:2014-09-19 20:11:22

标签: ios json push-notification parse-platform

我试图从Parse网络界面向我的iPhone发送JSON Push,但它无法正常工作。

网络服务告诉我状态为完成,通知是"无警报"但我的iPhone上没有任何通知......

这就是我得到的:http://i.stack.imgur.com/bCh2F.png

这是我发送的JSON:

{ "data": { "alert": "A test notification from Parse!" } }

是的,带消息(无JSON)的简单推送工作正常。

感谢您的帮助

2 个答案:

答案 0 :(得分:1)

尝试{ "aps": { "alert": "A test notification from Parse!" } }

答案 1 :(得分:0)

我在单个级别使用了以下JSON,它对我有效(正确显示标题和警告消息):

{
    "title": "<the title goes here>",
    "alert": "<the message goes here>",
}

我从代码中发现的是,如果你不通过覆盖ParsePushBroadcastReceiver的onPushOpen来做任何魔术,你可以添加 uri 动作< / em>的。例如,我们使用这个用户向用户发送有关可用更新的信息(如果版本已经过时):

{
    "title": "<the title goes here>",
    "alert": "<the message goes here>",
    "uri": "https://play.google.com/store/apps/details?id=<package name>",
    "action": "android.intent.action.VIEW"
}