why didRegisterForRemoteNotificationsWithDeviceToken is not called

Objective CApple Push-Notifications

Objective C Problem Overview


I am making an application in which I want to implement apple push notification service. I am following the step-by-step instructions given in this tutorial.

But still, the methods are not called. I don't know what is causing the problem. Can anyone help me?

    - (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken { 
        //NSString * token = [[NSString alloc] initWithData:deviceTokenencoding:NSUTF8StringEncoding];
        NSString *str = [NSString stringWithFormat:@"Device Token=%@",deviceToken];
        NSLog(@"Device Token:%@",str);

        //NSLog(@"Device token is called");
        //const void *devTokenBytes = [deviceToken bytes];
        //NSLog(@"Device Token");
    }

    - (void)application:(UIApplication *)application didFailToRegisterForRemoteNotificationsWithError:(NSError *)err { 
        NSString *str = [NSString stringWithFormat: @"Error: %@", err];
        NSLog(@"Error:%@",str);    
    }

Objective C Solutions


Solution 1 - Objective C

I had the same issue: calling registerForRemoteNotificationTypes: invoked neither application:didRegisterForRemoteNotificationsWithDeviceToken: nor application:didFailToRegisterForRemoteNotificationsWithError:

I eventually resolved this issue with the help of Apple's technical note TN2265.

This is what I did:

First off, I double-checked that I am indeed registering correctly for Push Notifications, including verifying my provisioning profile for "aps-environment" key and the codesigning of the .app file itself. I had it all set up correctly.

I then had to debug Push Notification status messages in the console (you need to install PersistentConnectionLogging.mobileconfig provisioning profile on your device and reboot it. See TN2265 under "Observing Push Status Messages"). I noticed that apns process starts a timer and calculates a minimum fire date, which made me suspect that the Push-Notification registration confirmation message, which is normally presented at this point, is supressed by APNS, as indicated in TN2265:

>Resetting the Push Notifications Permissions Alert on iOS > > The first time a push-enabled app registers for push notifications, iOS asks the user if they wish to receive notifications for that app. Once the user has responded to this alert it is not presented again unless the device is restored or the app has been uninstalled for at least a day. > >If you want to simulate a first-time run of your app, you can leave the app uninstalled for a day. You can achieve the latter without actually waiting a day by setting the system clock forward a day or more, turning the device off completely, then turning the device back on.

So, I removed the app from the device, then manually changed the iPhone's date in Settings, rebooted the device, and re-installed the app.

The next time my code called registerForRemoteNotificationTypes, it received callbacks as expected.

This resolved the issue for me. Hope it helps.

Solution 2 - Objective C

In iOS 8, some methods are deprecated. Follow the steps below for iOS 8 compatibility

  1. Register notification --

    if([[UIDevice currentDevice] systemVersion].floatValue >= 8.0) { UIUserNotificationSettings* notificationSettings = [UIUserNotificationSettings settingsForTypes:UIUserNotificationTypeAlert | UIUserNotificationTypeBadge | UIUserNotificationTypeSound categories:nil]; [[UIApplication sharedApplication] registerUserNotificationSettings:notificationSettings];
    } else { [[UIApplication sharedApplication] registerForRemoteNotificationTypes:(UIRemoteNotificationTypeAlert | UIRemoteNotificationTypeSound|UIRemoteNotificationTypeBadge)]; }

  2. Add new 2 methods --

    • (void)application:(UIApplication *)application didRegisterUserNotificationSettings:(UIUserNotificationSettings *)notificationSettings { //register to receive notifications [application registerForRemoteNotifications]; }

    //For interactive notification only

    • (void)application:(UIApplication *)application handleActionWithIdentifier:(NSString *)identifier forRemoteNotification:(NSDictionary *)userInfo completionHandler:(void(^)())completionHandler { //handle the actions if ([identifier isEqualToString:@"declineAction"]){ } else if ([identifier isEqualToString:@"answerAction"]){ } }

Note : above two new methods are required in iOS 8 in addition to didRegisterForRemoteNotificationsWithDeviceToken and didReceiveRemoteNotification..Otherwise delegate method will not be invoked.

See: https://stackoverflow.com/questions/24216632/remote-notification-ios-8

Solution 3 - Objective C

In iOS 8, in addition to requesting push notification access differently, you also need to register differently.

Request Access:

if ([application respondsToSelector:@selector(registerUserNotificationSettings:)]) {
    // iOS 8
    UIUserNotificationSettings* settings = [UIUserNotificationSettings settingsForTypes:UIUserNotificationTypeAlert | UIUserNotificationTypeBadge | UIUserNotificationTypeSound categories:nil];
    [[UIApplication sharedApplication] registerUserNotificationSettings:settings];
} else {
    // iOS 7 or iOS 6
    [[UIApplication sharedApplication] registerForRemoteNotificationTypes:(UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeSound | UIRemoteNotificationTypeAlert)];
}

Handle registered device:

// New in iOS 8
- (void)application:(UIApplication *)application didRegisterUserNotificationSettings:(UIUserNotificationSettings *)notificationSettings {
    [application registerForRemoteNotifications];
}

// iOS 7 or iOS 6
- (void)application:(UIApplication *)app didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken {
    NSString *token = [[deviceToken description] stringByTrimmingCharactersInSet: [NSCharacterSet characterSetWithCharactersInString:@"<>"]];
    token = [token stringByReplacingOccurrencesOfString:@" " withString:@""];
    // Send token to server
}

Solution 4 - Objective C

Bear in mind that remote notifications are not supported in the simulator. Therefore, if you run your app in the simulator, didRegisterForRemoteNotificationsWithDeviceToken won't be called.

Solution 5 - Objective C

Make sure you call in your code (update according to supported notification kinds)

[[UIApplication sharedApplication] registerForRemoteNotificationTypes: UIRemoteNotificationTypeAlert | UIRemoteNotificationTypeSound];

and the provisioning profile is APNS enabled. You may need to re-download the provisioning profile after enabing APNS. If you have troubles and you get errors, then maybe you should create an Entitlements.plist and add the key "aps-environment" with value "development" or "production" depending on the kind of build (normally this key-value pair is contained in the provisioning profile, but sometimes Xcode mess with them).

Solution 6 - Objective C

If the provisioning profiles are used before to Enable and Configure Apple Push Notification service, you will need to redownload the provisioning profiles again.

Delete provisioning profiles from Xcode Organizer and from the iPhone/iPad. Go to Settings -> General -> Profiles -> [Your provisioning] -> Remove.

Install the new downloaded provisioning profiles. Then clean and run the project from XCode. Now didRegisterForRemoteNotificationsWithDeviceToken should be called.

Solution 7 - Objective C

Try this it working for me ,

First Step

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions

In above method add below code

 UIApplication *application = [UIApplication sharedApplication];
 if ([application respondsToSelector:@selector(registerUserNotificationSettings:)]) {
UIUserNotificationSettings *settings = [UIUserNotificationSettings settingsForTypes:(UIUserNotificationTypeBadge                                                                                     |UIUserNotificationTypeSound                                                                                     |UIUserNotificationTypeAlert) categories:nil];
[application registerUserNotificationSettings:settings];
 } 
 else {
      UIRemoteNotificationType myTypes = UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeAlert | UIRemoteNotificationTypeSound;
[application registerForRemoteNotificationTypes:myTypes];
     }

Second Step

Add below code Function

 #ifdef __IPHONE_8_0
   - (void)application:(UIApplication *)application didRegisterUserNotificationSettings:(UIUserNotificationSettings *)notificationSettings
   {
  //register to receive notifications
  [application registerForRemoteNotifications];
  }

 - (void)application:(UIApplication *)application handleActionWithIdentifier:(NSString *)identifier forRemoteNotification:(NSDictionary *)userInfo completionHandler:(void(^)())completionHandler
  {
    //handle the actions
    if ([identifier isEqualToString:@"declineAction"]){
    }
   else if ([identifier isEqualToString:@"answerAction"]){
   }
}
 #endif

You will get device Token in below function

 - (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken 

for detail answer please refer This

Hope this is help for some one .

Solution 8 - Objective C

I made a mistake and overlooked an implementation detail that lead me here. I tried to get fancy and ask the user for Push Notifications later in the application onboarding process, so I had my registerForRemoteNotificationTypes, didRegisterForRemoteNotificationsWithDeviceToken and didFailToRegisterForRemoteNotificationsWithError all in a custom UIView.

FIX: the didRegisterForRemoteNotificationsWithDeviceToken and didFailToRegisterForRemoteNotificationsWithError need to be in the UIApplicationDelegate (YourAppDelegate.m) to be triggered.

seems obvious now, heh.

Solution 9 - Objective C

Be sure that your internet connection is on. This took me hours to get work notifications because of internet connection.

Solution 10 - Objective C

If you have added push to an existing App ID, make sure you re-generate your provisioning profiles. If you don't, the profile will not know about your enabling of push on the App ID.

Solution 11 - Objective C

-​(BOOL)application:(UIApplication​*)application​ didFinishLaunchingWithOptions:(NSDictionary​*)launchOptions​{​​​​ ​​​​ ​​​​//​Override​point​for​customization​after​application​launch.
​​​​//​Add​the​view​controller’s​view​to​the​window​and​display. ​​​​[window​addSubview:viewController.view]; ​​​​[window​makeKeyAndVisible];
NSLog(@”Registering for push notifications...”);
 [[UIApplication sharedApplication]
registerForRemoteNotificationTypes: (UIRemoteNotificationTypeAlert | UIRemoteNotificationTypeBadge |
UIRemoteNotificationTypeSound)]; 
​​​​returnYES;
}


- (void)application:(UIApplication *)app didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken {
}
NSString *str = [NSString stringWithFormat:@”Device Token=%@”,deviceToken];
NSLog(@”%@”, str);


- (void)application:(UIApplication *)app didFailToRegisterForRemoteNotificationsWithError:(NSError *)err {
NSString *str = [NSString stringWithFormat: @”Error: %@”, err]; NSLog(@”%@”, str);
}


- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo {
}
for (id key in userInfo) { NSLog(@”key: %@, value: %@”, key, [userInfo objectForKey:key]);
}

Solution 12 - Objective C

Minimal Requirement to Get Device Token:

No need to configure app id, provisioning or certificate etc thus no code signing set to get the delegate method didRegisterForRemoteNotificationsWithDeviceToken called.

I just created a new iOS project in Xcode 7 for single view with default settings and gave a random bundle id like com.mycompany.pushtest which is not configured in apple dev portal.

With the following code, I'm getting my device token in didRegisterForRemoteNotificationsWithDeviceToken method on my iPad with internet access to WIFI. My device is attached and I'm just running the app directly from xcode and viewing the values in xcode's console.

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions   
  
{  
    if ([application respondsToSelector:@selector(registerUserNotificationSettings:)])  
    {  
        UIUserNotificationType userNotificationTypes = (UIUserNotificationTypeAlert | UIUserNotificationTypeBadge | UIUserNotificationTypeSound);  
        UIUserNotificationSettings *settings = [UIUserNotificationSettings settingsForTypes:userNotificationTypes categories:nil];  
        [application registerUserNotificationSettings:settings];  
        [application registerForRemoteNotifications];  
    }  
    else  
    {  
        // Register for Push Notifications, if running iOS version < 8  
        [application registerForRemoteNotificationTypes:(UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeAlert | UIRemoteNotificationTypeSound)];  
    }  
    return YES;  
}  


- (void)application:(UIApplication *)application didFailToRegisterForRemoteNotificationsWithError:(NSError *)error {
    NSLog(@"Error: %@", error.description);
}

- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken {
    NSLog(@"didRegisterForRemoteNotificationsWithDeviceToken: %@", deviceToken);
}

- (void)application:(UIApplication *)application didRegisterUserNotificationSettings:(UIUserNotificationSettings *)notificationSettings {
    NSLog(@"NotificationSettings: %@", notificationSettings);
}

Solution 13 - Objective C

This happened to me, because I reset & deleted all the data on the phone (wanted a dev phone to use). This prevented APN from connecting at all after setting up the phone again.

I tried all sorts of things, but the only thing that fixed it was setting the phone up to work with a carrier under a new SIM card.

This link offers more hints as to what might have been going on: https://developer.apple.com/library/ios/technotes/tn2265/_index.html

It says that APN tries to connect preferentially via carrier / towers as opposed to wifi. Maybe the issue also was something was going on with the router blocking port 5223 on the wifi network, but I doubt it because it worked fine on the prior day before the global reset occurred.

Solution 14 - Objective C

I have a point on this.Recently I too face this problem.I have done everything according to documentation but delegate method was not calling.Finally I saw one post saying that problem with the network.Then I have changed network and it works fine.So take care about network also because few networks can block the APNS.

Solution 15 - Objective C

After wasting the most annoying 3h, here are the steps to fix the issue:

  1. Delete the app

  2. Reset the device

  3. Run again

It just worked

Solution 16 - Objective C

For me what solved it was going to the build settings and under the code signing section, manually selecting the code signing identity and provisioning profile. Apparently the automatic setting wasn't picking-up the correct one and therefore the app wasn't properly authorized.

Solution 17 - Objective C

Also, don't forget to check the system status at Apple https://developer.apple.com/system-status/.

I'd tried all the solutions posted above but in the end the fault was because the APNS service was down! The next day all was working again as expected.

Also, you have a typo in your callback method:

- (void)application:(UIApplication *)appdidRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken

As Rupesh pointed out the correct method name is:

- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken

That's probably why you never received the token in your case!

Solution 18 - Objective C

if shut down push message of app,

appdidRegisterForRemoteNotificationsWithDeviceToken will never be called

Solution 19 - Objective C

You need to call registerForNotifications method from didFinishLaunchingWithOptions.

 func registerForNotifications(){

        if #available(iOS 10.0, *) {

            let center = UNUserNotificationCenter.current()
            center.delegate = self
            center.requestAuthorization(options:[.alert,.sound,.badge]) { (granted, error) in
                if granted{
                    UIApplication.shared.registerForRemoteNotifications()
                }else{

                    print("Notification permission denied.")
                   
                }
            }
            
        } else {

            // For iOS 9 and Below
            let type: UIUserNotificationType = [.alert,.sound,.badge];
            let setting = UIUserNotificationSettings(types: type, categories: nil);
            UIApplication.shared.registerUserNotificationSettings(setting);
            UIApplication.shared.registerForRemoteNotifications()
        }
    }

 func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {

        let token = String(format: "%@", deviceToken as CVarArg).trimmingCharacters(in: CharacterSet(charactersIn: "<>")).replacingOccurrences(of: " ", with: "")
        print(token)

    }
    

extension AppDelegate : UNUserNotificationCenterDelegate{

    @available(iOS 10.0, *)

    func userNotificationCenter(_ center: UNUserNotificationCenter,  willPresent notification: UNNotification, withCompletionHandler   completionHandler: @escaping (_ options:   UNNotificationPresentationOptions) -> Void) {
        print("Handle push from foreground”)
        
        let info = ((notification.request.content.userInfo as NSDictionary).value(forKey: "aps") as! NSDictionary)
        if let type = info.value(forKey: "type") as? Int{
            if type == 0 {  
	
		 // notification received ,Handle your notification here
                 
            }
        }
    }

    @available(iOS 10.0, *)

    func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Void) {

        print("Handle push from background or closed")
        
        let info = ((response.notification.request.content.userInfo as NSDictionary).value(forKey: "aps") as! NSDictionary)
        if let type = info.value(forKey: "type") as? Int{
            if type == 0 {   

			// notification received ,Handle your notification here
            }
        }
    }
}

Solution 20 - Objective C

I had a different issue wherein my push notification callbacks were getting hijacked by the 3rd party libraries, that I had included, namely Firebase. These libraries swizzle push notification callback methods to get the callbacks.

Hope this helps someone.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionMuzammilView Question on Stackoverflow
Solution 1 - Objective C100gramsView Answer on Stackoverflow
Solution 2 - Objective Cuser4034301View Answer on Stackoverflow
Solution 3 - Objective CKyle CleggView Answer on Stackoverflow
Solution 4 - Objective CEricView Answer on Stackoverflow
Solution 5 - Objective CLorenzo BevilacquaView Answer on Stackoverflow
Solution 6 - Objective CBorislav GizdovView Answer on Stackoverflow
Solution 7 - Objective CJaywant KhedkarView Answer on Stackoverflow
Solution 8 - Objective CGraehamFView Answer on Stackoverflow
Solution 9 - Objective CRendelView Answer on Stackoverflow
Solution 10 - Objective CMichael PetersonView Answer on Stackoverflow
Solution 11 - Objective CSachin KumaramView Answer on Stackoverflow
Solution 12 - Objective CzeeawanView Answer on Stackoverflow
Solution 13 - Objective CPhyllis SutherlandView Answer on Stackoverflow
Solution 14 - Objective CSURESH SANKEView Answer on Stackoverflow
Solution 15 - Objective CozdView Answer on Stackoverflow
Solution 16 - Objective CDiego RebosioView Answer on Stackoverflow
Solution 17 - Objective CBrettView Answer on Stackoverflow
Solution 18 - Objective ClibaiView Answer on Stackoverflow
Solution 19 - Objective CVed RauniyarView Answer on Stackoverflow
Solution 20 - Objective CjaroraView Answer on Stackoverflow