获取APNs响应BadDeviceToken或Unregistered的可能原因是什么? [英] What are the possible reasons to get APNs responses BadDeviceToken or Unregistered?

查看:5086
本文介绍了获取APNs响应BadDeviceToken或Unregistered的可能原因是什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

向iOS用户发送通知时,对于其中一些用户,我会收到响应状态代码400(BadDeviceToken)或代码410(未注册)。



来自Apple文档 BadDeviceToken:


指定的设备令牌是坏的。验证请求是否包含有效令牌并且令牌与环境匹配。


bad是什么意思?我知道设备令牌在某些时候是有效的。用户如何使其设备令牌变坏?



关于未注册的文档:


设备令牌无效指定的主题。


这是否意味着应用程序已被删除?或者这种反应可能还有其他原因。

解决方案

正如您所引用的



接下来,之后您生成存档,打开管理器(通过窗口菜单> 管理器),选择存档,然后单击右边是导出... 。您应该看到四种分发方法:





如果您选择App Store或Enterprise,您将在后面的对话框中看到Xcode将APNS权利更改为生产(参见红色箭头的提示):





如果选择Ad Hoc或Development, aps-environment 下的文字将为开发,然后应匹配后端的配置。


When sending notifications to iOS users, for some of them I get response status code 400 (BadDeviceToken) or code 410 (Unregistered).

From Apple documentation about "BadDeviceToken":

The specified device token was bad. Verify that the request contains a valid token and that the token matches the environment.

What is the meaning of "bad"? I know for a fact that the device token was valid at some earlier time. What does a user do to make its device token bad?

From documentation about "Unregistered":

The device token is inactive for the specified topic.

Does this necceserally mean that the app has been deleted? Or there can be some other reasons for this response.

解决方案

As you've quoted from Table 8-6 in the APNS documentation, there are two possible causes for the error:

  1. That the device token is invalid
  2. That the device token does not match the environment

If it is the first case, make sure that the iOS app registers the device for remote notifications every single time that the app is launched because there are many reasons for the device token to change across launches, as outlined in Configuring Remote Notification Support.

If it is the second case, you need to be sure that:

  • The backend uses development configurations if your app build was signed with development APNS entitlements, and
  • The backend uses production configurations if your app build was signed with production APNS entitlements.

Luckily, as the iOS developer, you don't need to directly change the APNS entitlements yourself. It is always in development, and is only automatically changed by Xcode to production when you generate the build and export for App Store or enterprise distribution. As for the backend, your backend developer should know how to configure the backend for development and production environments. For some frameworks, it is a matter of toggling some boolean named isProduction. Ultimately, according to Communicating with APNs under the section APNs Connections, push notifications are sent to different APNS endpoints depending on whether the environment is production or development.

Let's pretend that the BadDeviceToken error is due to the second case--that the device token registered by the app does not match the backend's properly configured development environment. First, in your Xcode project, check your .entitlements file and verify that the APS Environment key's value is development. It should look like this:

Next, after you generate an archive, open the Organizer (via the Window menu > Organizer), select the archive, and click on Export... at the right. You should see four methods of distribution:

If you select App Store or Enterprise, you will see in the later dialogs that Xcode changes the APNS entitlements to production (see tip of red arrow):

If you select Ad Hoc or Development, the text under aps-environment will be development, which should then match the backend's configurations.

这篇关于获取APNs响应BadDeviceToken或Unregistered的可能原因是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆