push notification获取device token

Posted SoulDu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了push notification获取device token相关的知识,希望对你有一定的参考价值。

第一步:申请证书:

 

技术分享

 

第二步:申请app ids,应用名字必须一致。然后再进入进行编辑,使其enable,绿灯。

 

技术分享

 

第三步:申请provisioning profile,生成.mobileprovision,双击该证书才能正确导入手机设备,不能拖。

 

技术分享

技术分享

 

第四步:创建应用,使其名字一致。

 

技术分享

第五步:写代码

 

 

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

{

    // Override point for customization after application launch.

//    return YES;

    UIRemoteNotificationType types =

    (UIRemoteNotificationTypeBadge

     |UIRemoteNotificationTypeSound

     |UIRemoteNotificationTypeAlert);

    

    //注册消息推送

    [[UIApplication sharedApplication]registerForRemoteNotificationTypes:types];

    return YES;

    

}

 

//获取DeviceToken成功

- (void)application:(UIApplication *)application

didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken

{

    NSLog(@"DeviceToken: {%@}",deviceToken);

    //这里进行的操作,是将Device Token发送到服务端

    

    UIAlertView * alert = [[UIAlertView alloc]initWithTitle:nil message:[NSStringstringWithFormat:@"DeviceToken:%@",deviceToken] delegate:self cancelButtonTitle:nil otherButtonTitles:@"确定",nil];

    [alert show];

}

 

//注册消息推送失败

- (void)application:(UIApplication *)application

didFailToRegisterForRemoteNotificationsWithError:(NSError *)error

{

    NSLog(@"Register Remote Notifications error:{%@}",error);

    //    NSLog(@"Register Remote Notifications error:{%@}",error.localizedDescription);

}

 

//处理收到的消息推送

- (void)application:(UIApplication *)application

didReceiveRemoteNotification:(NSDictionary *)userInfo

{

    NSLog(@"Receive remote notification : %@",userInfo);

    UIAlertView *alert =

    [[UIAlertView alloc] initWithTitle:@"温馨提示"

                               message:@"推送成功!"

                              delegate:nil

                     cancelButtonTitle:@"确定"

                     otherButtonTitles:nil];

    [alert show];

}

 

以上是关于push notification获取device token的主要内容,如果未能解决你的问题,请参考以下文章

如何在 Apple Push Notification 上添加隐藏数据

NotificationHub Push Notification 返回:从 Token Provider 获取的 Token 错误

Apple Push Notification - 无法回调 didRegisterForRemoteNotificationsWithDeviceToken

Apple Push Notifications ,我们如何获得警报

(Unity) Aws SNS(Push Notification) Class not found 错误

使用 laravel-push-notification 向 Android 发送推送通知