APNS JSON PAYLOAD - 更多参数
我需要向 APNS 服务的 json 负载添加一些参数。我该怎么做? 这是苹果的文档: http://developer.apple.com/library/ios/#documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/ApplePushService/ApplePushService.html#//apple_ref/doc/uid/TP40008194- CH100-SW1
当我尝试发送带有关闭和查看按钮的消息时,我需要添加我的移动应用程序所需的两个参数。 有什么想法吗?
I need to add some arguments to a json payload for APNS service. How can i do this?
this is the documentation of apple: http://developer.apple.com/library/ios/#documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/ApplePushService/ApplePushService.html#//apple_ref/doc/uid/TP40008194-CH100-SW1
When i try to send a message with close and view buttons, i need to add two more arguments that my mobile application needs.
Any idea?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
不确定您是否得到答案。但这就是文档提到的
因此,为了将自定义值添加到您的有效负载中,只需将它们作为键值对添加到您的有效负载中。像这样的
这里
custom_key1
和custom_key2
是您的自定义键,value1
和value2
是它们的值。Not sure if you got the answer yet. But this is what the documentation mentions
So in order to add custom values to your payload, just add them as key-value pairs in your payload. Something like this
Here
custom_key1
andcustom_key2
are your custom keys andvalue1
andvalue2
are their values.如果有人仍然想知道:
In case someone is still wondering :
我在 PHP 中使用以下内容
I use the following in PHP