1

我使用 pushwoosh SDK 配置我的 ios 应用程序,它非常简单并且工作正常。现在我想发送例如id一个产品来显示我何时收到推送或任何其他想法,但用户看不到这些数据。我尝试page但不工作。

Q1:我该怎么做?Q2:这是什么page

编辑:我刚刚找到了 Rich pushes ( page) 的文档:link,我发送了一个带有 title=test 的推送通知,并且一个page女巫包含一个 href 到 google ,但在onPushReceived: withNotification: onStart:功能上这是接收到的推送的字典的描述:

{
aps =     {
    alert = test;
    sound = default;
};
h = 774;
p = x;
}

如我所见,774 是在推送消息中发送的页面的 id,好的,我可以使用它,但我怎样才能获取该页面的内容(网络服务?)

4

1 回答 1

3

您可以通过远程 API 请求发送您的自定义数据。目前您无法通过 Web 表单执行此操作。

至于远程 API,它非常简单。请参阅此指南:

http://www.pushwoosh.com/programming-push-notification/pushwoosh-push-notification-remote-api/#PushserviceAPI-Method%2Fmessages%2Fcreate

于 2012-10-03T10:40:52.027 回答