有没有人知道用于标准事物的apns消息 - 如哔声

时间:2011-02-23 02:03:36

标签: iphone ipad apple-push-notifications

Apples me app可以发出手机提示音或显示信息。我假设这是通过APNS直接与ios交谈完成的。有人知道这些消息是什么(Apple似乎没有记录它们)

1 个答案:

答案 0 :(得分:0)

这实际上是一个服务器开发问题......但无论如何,使用PHP时,只需将声音标记为一个数组,然后传递给Apple APNS服务器。这是我前一段时间使用的教程: APNS tutorial

你会注意到有效载荷数组中的声音选项:

$payload['aps'] = array('alert' => 'This is the alert text', 'badge' => 1, 'sound' => 'default');