菜鸟教程小白 发表于 2022-12-12 15:08:10

ios - 确保收到的推送通知适用于正确的用户


                                            <p><p>使用一个作为电子邮件客户端的应用程序,并在收到新电子邮件时收到推送通知。</p>

<p>这些应用程序如何确保推送通知到达时是针对当前登录用户的?</p>

<p>例如,用户使用 <code>user1</code> 登录,然后注销并使用 <code>user2</code> 登录。
如果在 <code>user2</code> 登录时收到与 <code>user1</code> 的新电子邮件相关的推送通知怎么办?</p>

<p>从推送通知通信机制的角度来看,这是可能的。当用户切换登录时,推送通知可能已经在路上了。</p>

<p>问题出在 iOS 上,当新的推送通知到达时,如果应用不在前台,您的代码不会被调用。 </p>

<p>这在 iOS 7 (<a href="https://developer.apple.com/library/ios/releasenotes/General/WhatsNewIniOS/Articles/iOS7.html#//apple_ref/doc/uid/TP40013162-SW10" rel="noreferrer noopener nofollow">https://developer.apple.com/library/ios/releasenotes/General/WhatsNewIniOS/Articles/iOS7.html#//apple_ref/doc/uid/TP40013162-SW10</a>) 中发生了一些变化,调用了 yoru 代码,但推送通知仍然在没有您的代码的情况下显示,这意味着您无法决定天气是否显示它。这与您可以随时决定的 Android 不同。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>这是真的,您无法在系统之前捕捉到通知,但是...您可以改为发送 <a href="https://developer.apple.com/library/ios/documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/Chapters/ApplePushService.html" rel="noreferrer noopener nofollow">silent push notification</a> ,它的有效载荷是这样的:</p>

<pre><code>{
    &#34;aps&#34;: {
      &#34;content-available&#34;: 1
    },
    &#34;user&#34;: &#34;someUser&#34;,
    &#34;alertMsg&#34;: &#34;someMessage&#34;
}
</code></pre>

<p>这基本上会触发您的 <code>application:didReceiveRemoteNotification:fetchCompletionHandler:</code> 并给您 30 秒的处理时间(如果您在后台)而不显示警报。您现在可以检查登录用户是否匹配,如果匹配,则使用来自远程用户的信息(甚至来自网络调用的数据)触发 <em>本地</em> 通知</p>

<p>我希望这是有道理的......</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 确保收到的推送通知适用于正确的用户,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/29857485/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/29857485/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 确保收到的推送通知适用于正确的用户