有谁知道用于标准事物的 apns 消息 - 例如蜂鸣声

发布于 2024-10-18 21:41:03 字数 87 浏览 1 评论 0原文

Apples me 应用程序可以让手机发出蜂鸣声或显示消息。我认为这是通过 APNS 直接与 ios 对话完成的。有谁知道这些消息是什么(苹果似乎没有记录它们)

Apples me app can make a phone beep or display a message. I assume this is done via APNS talking to ios directly. Does anybody know what these messages are (Apple doesnt seem to document them)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

海未深 2024-10-25 21:41:03

这确实是一个服务器开发问题...但无论哪种情况,在使用 PHP 时,您只需将声音密钥标记到数组中,然后将其传递给 Apple APNS 服务器。这是我前一段时间使用的教程:
APNS 教程

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

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

This is really a server development question... but either case, when using PHP, you just tag a sound key into an array which you pass to an Apple APNS server. Here is the tutorial I used a while ago:
APNS tutorial

You'll notice the sound option in the payload array:

$payload['aps'] = array('alert' => 'This is the alert text', 'badge' => 1, 'sound' => 'default');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文