Apple Push Notification Registration & Device Token Receive clarification?

前端 未结 2 433
灰色年华
灰色年华 2020-12-18 06:30

I am working on an iPhone app with Apple Push Notification integration. I have some doubts on this.

  1. If the user clicked \"Dont Allow\" button

相关标签:
2条回答
  • 2020-12-18 07:10
    1. 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.

      Note 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.

    2. 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:

      1. Request for certificate Authority
      2. Create app id
      3. Configuring AppId for Push Notifications
      4. Create provisioning profile
      5. Provisioning a device
      6. Enabling the profile in Xcode
      7. Creating push notification provider.

    For more understanding on APNS, check this out.

    0 讨论(0)
  • 2020-12-18 07:10

    I have tested with Xcode 6.1, ios8.1.2. Currently the device token will be generated only in two cases

    1. Apple's default consent with "Ok" option
    2. After "Dont allow", manual change in Setting->Notifications->app->AllowNotification(On)

    By declining first time with apple's consent, will not generate device token, till manually change the value in settings page.

    0 讨论(0)
提交回复
热议问题