简体   繁体   中英

Is it possible to get the device token even if Push Notification is not enabled?

I need to get the device token because I will use it for autologin. However, if the user did not allow Push Notifications from my App in his/her device, I will not be able to get the device token. I want to know if it's possible to get and store the user's device token even if he/she did not enable APN. Thanks.

Enabling/Disabling the push notification is just a setting...It doesn't stop the device from receiving the access token from APPLE .

Check Kimpoy's answer and even the comments on this ==> Apple Push Notification Registration & Device Token Receive clarification?

In my understanding on APNS, it doesn't depend on the user's action (as you mentioned that if when the user clicks on "Don't Allow" button) for your iOS to receive the Device Token.

If you included in your app:

 - (void)application:didRegisterForRemoteNotificationsWithDeviceToken

This means that your iOS-based app is sending a request for Push Notification registration. In return, Apple sends the Device Token to the iOS; then the iOS sends the token to the app and then the app sends it to their service provider.

Not that when the user is asked "Don't Allow" doesn't mean that you're not going to receive the device token. "Don't Allow" refers to the action to be taken to any notification received by the app that is intended for the user. Say, location. This is a whole different thing. This means that the user doesn't allow the app to use his/her location.

Yes. it still receives the Device Token as what I have discussed in my answer to your question in #1. This is only a setting for your app, which means that you won't be receiving any visible notification (badge, message or a sound) whenever there are updates about any information in relevance to your application. It's like setting your Facebook account to only receive notifications when your friends sends you a private message. Other than that, you won't be notified at all.

The process of enabling APNS is:

Request for certificate Authority Create app id Configuring AppId for Push Notifications Create provisioning profile Provisioning a device Enabling the profile in Xcode Creating push notification provider.

For more understanding on APNS, check this out.

--So the moral of the above story is,you still can get the device token even if the user disables it...Hope it helps...Good luck...

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM