个推的集成使用

作者: 放肆的洒脱 | 来源:发表于2016-11-18 17:25 被阅读1962次

为应用创建 APNs 推送证书,可以按照个推说明的去配置证书和描述文件

证书配置

描述文件配置

到个推注册应用取得AppId,AppKey,AppSecret,应用注册号之后不要立即使用,等上10分钟后使用

开始集成,导入sdk及所需要的库,然后是打开推送功能

开启 Target -> Capabilities -> Push Notifications。如果没有开启,在 Xcode8 上编译中将获取不到 DeviceToken。

SDK后台运行权限设置

在AppDelegate 中注册 GeTuiSdkDelegate

// iOS10 及以上需导入 UserNotifications.framework

#import<UserNotifications/UserNotifications.h>

/// 个推开发者网站中申请App时,注册的AppId、AppKey、AppSecret

#define kGtAppId          @"iMahVVxurw6BNr7XSn9EF2"  

#define kGtAppKey          @"yIPfqwq6OMAPp6dkqgLpG5"

#define kGtAppSecret      @"G0aBqAD6t79JfzTB6Z5lo5"

/// 需要使用个推回调时,需要添加"GeTuiSdkDelegate" /// iOS 10 及以上,需要添加 UNUserNotificationCenterDelegate 协议,才能使用 UserNotifications.framework 的回调 @interface AppDelegate : UIResponder<UIApplicationDelegate, GeTuiSdkDelegate, UNUserNotificationCenterDelegate>

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

// 通过个推平台分配的appId、 appKey 、appSecret 启动SDK,注:该方法需要在主线程中调用

[GeTuiSdk startSdkWithAppId:kGtAppId appKey:kGtAppKey appSecret:kGtAppSecret delegate:self];

// 注册 APNs

[self registerRemoteNotification];

return YES;

}

/** 注册 APNs */

- (void)registerRemoteNotification {

/*

警告:Xcode8 的需要手动开启“TARGETS -> Capabilities -> Push Notifications”

*/

/*

警告:该方法需要开发者自定义,以下代码根据 APP 支持的 iOS 系统不同,代码可以对应修改。

以下为演示代码,注意根据实际需要修改,注意测试支持的 iOS 系统都能获取到 DeviceToken

*/

if ([[UIDevice currentDevice].systemVersion floatValue] >= 10.0) {

#if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_10_0 // Xcode 8编译会调用

UNUserNotificationCenter *center = [UNUserNotificationCenter currentNotificationCenter];

center.delegate = self;

[center requestAuthorizationWithOptions:(UNAuthorizationOptionBadge | UNAuthorizationOptionSound | UNAuthorizationOptionAlert | UNAuthorizationOptionCarPlay) completionHandler:^(BOOL granted, NSError *_Nullable error) {

if (!error) {

NSLog(@"request authorization succeeded!");

}

}];

[[UIApplication sharedApplication] registerForRemoteNotifications];

#else // Xcode 7编译会调用

UIUserNotificationType types = (UIUserNotificationTypeAlert | UIUserNotificationTypeSound | UIUserNotificationTypeBadge);

UIUserNotificationSettings *settings = [UIUserNotificationSettings settingsForTypes:types categories:nil];

[[UIApplication sharedApplication] registerForRemoteNotifications];

[[UIApplication sharedApplication] registerUserNotificationSettings:settings];

#endif

} else if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 8.0) {

UIUserNotificationType types = (UIUserNotificationTypeAlert | UIUserNotificationTypeSound | UIUserNotificationTypeBadge);

UIUserNotificationSettings *settings = [UIUserNotificationSettings settingsForTypes:types categories:nil];

[[UIApplication sharedApplication] registerForRemoteNotifications];

[[UIApplication sharedApplication] registerUserNotificationSettings:settings];

} else {

UIRemoteNotificationType apn_type = (UIRemoteNotificationType)(UIRemoteNotificationTypeAlert |

UIRemoteNotificationTypeSound |

UIRemoteNotificationTypeBadge);

[[UIApplication sharedApplication] registerForRemoteNotificationTypes:apn_type];

}

}

向个推服务器注册DeviceToken

/** 远程通知注册成功委托 */

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

NSString *token = [[deviceToken description] stringByTrimmingCharactersInSet:[NSCharacterSet characterSetWithCharactersInString:@"<>"]];

token = [token stringByReplacingOccurrencesOfString:@" " withString:@""];

NSLog(@"\n>>>[DeviceToken Success]:%@\n\n", token);

//向个推服务器注册deviceToken

[GeTuiSdk registerDeviceToken:token];

}

GeTuiSdk注册回调,获取CID信息

/** SDK启动成功返回cid */

- (void)GeTuiSdkDidRegisterClient:(NSString *)clientId {

//个推SDK已注册,返回clientId

NSLog(@"\n>>>[GeTuiSdk RegisterClient]:%@\n\n", clientId);

}

/** SDK遇到错误回调 */

- (void)GeTuiSdkDidOccurError:(NSError *)error {

//个推错误报告,集成步骤发生的任何错误都在这里通知,如果集成后,无法正常收到消息,查看这里的通知。

NSLog(@"\n>>>[GexinSdk error]:%@\n\n", [error localizedDescription]);

}

iOS 10 中,处理 APNs 展示点击,统计有效用户点击数,需先添加 UNUserNotificationCenterDelegate 后,在 AppDelegate.m 实现的 didReceiveNotificationResponse 方法中调用处理方法:

//  iOS 10: App在前台获取到通知

- (void)userNotificationCenter:(UNUserNotificationCenter *)center willPresentNotification:(UNNotification *)notification withCompletionHandler:(void (^)(UNNotificationPresentationOptions))completionHandler {

NSLog(@"willPresentNotification:%@", notification.request.content.userInfo);

// 根据APP需要,判断是否要提示用户Badge、Sound、Alert

completionHandler(UNNotificationPresentationOptionBadge | UNNotificationPresentationOptionSound | UNNotificationPresentationOptionAlert);

}

//  iOS 10: 点击通知进入App时触发,在该方法内统计有效用户点击数

- (void)userNotificationCenter:(UNUserNotificationCenter *)center didReceiveNotificationResponse:(UNNotificationResponse *)response withCompletionHandler:(void (^)())completionHandler {

NSLog(@"didReceiveNotification:%@", response.notification.request.content.userInfo);

// [ GTSdk ]:将收到的APNs信息传给个推统计

[GeTuiSdk handleRemoteNotification:response.notification.request.content.userInfo];

completionHandler();

}

设置别名,别名推送

// 绑定别名

[GeTuiSdk bindAlias:@"个推" andSequenceNum:@"seq-1"];

// 取消绑定别名

[GeTuiSdk unbindAlias:@"个推" andSequenceNum:@"seq-2"];

处理 绑定/解绑 返回:

- (void)GeTuiSdkDidAliasAction:(NSString *)action result:(BOOL)isSuccess sequenceNum:(NSString *)aSn error:(NSError *)aError {

//  解绑别名必须在账号退出之前解绑

if ([kGtResponseBindType isEqualToString:action]) {

NSLog(@"绑定结果 :%@ !, sn : %@", isSuccess ? @"成功" : @"失败", aSn);

if (!isSuccess) {

NSLog(@"失败原因: %@", aError);

}

} else if ([kGtResponseUnBindType isEqualToString:action]) {

NSLog(@"绑定结果 :%@ !, sn : %@", isSuccess ? @"成功" : @"失败", aSn);

if (!isSuccess) {

NSLog(@"失败原因: %@", aError);

}

}

}

使用个推 SDK 透传消息, 由个推通道下发 (非 APNs)

//  这个感觉就是个推比别的推送好用的地方了,只要clientID在线就可以直接聊天,类似与及时通讯

/** SDK收到透传消息回调 */

- (void)GeTuiSdkDidReceivePayloadData:(NSData *)payloadData andTaskId:(NSString *)taskId andMsgId:(NSString *)msgId andOffLine:(BOOL)offLine fromGtAppId:(NSString *)appId {

//收到个推消息

NSString *payloadMsg = nil;

if (payloadData) {

payloadMsg = [[NSString alloc] initWithBytes:payloadData.bytes

length:payloadData.length

encoding:NSUTF8StringEncoding];

}

NSString *msg = [NSString stringWithFormat:@"taskId=%@,messageId:%@,payloadMsg:%@%@",taskId,msgId, payloadMsg,offLine ? @"<离线消息>" : @""];

NSLog(@"\n>>>[GexinSdk ReceivePayload]:%@\n\n", msg);

[GeTuiSdk sendFeedbackMessage:90001 andTaskId:taskId andMsgId:msgId];

if (offLine) {    //  离线消息已经有苹果的apns推过消息了,避免上线后再次受到消息

return;

}

//  处理应用在线收到的消息

}

苹果官方静默推送

/** APP已经接收到“远程”通知(推送) - 透传推送消息  */

- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult result))completionHandler {

// 处理APNs代码,通过userInfo可以取到推送的信息(包括内容,角标,自定义参数等)。如果需要弹窗等其他操作,则需要自行编码。

NSLog(@"\n>>>[Receive RemoteNotification - Background Fetch]:%@\n\n",userInfo);

completionHandler(UIBackgroundFetchResultNewData);

//  处理应用不在线时受到的消息,用户点击推送消息后的跳转

}

相关文章

  • 个推的集成使用

    为应用创建 APNs 推送证书,可以按照个推说明的去配置证书和描述文件 证书配置 描述文件配置 到个推注册应用取得...

  • iOS开发个推集成中的注意点(手动集成)

    一、个推的集成 1.个推的集成可以参考个推的集成文档。 2.初步集成的代码如下: APPDelegate.h AP...

  • 个推集成

    集成过程就不多说了,参照官方文档。(消息推送必须用真机测试)官方地址:个推官网 集成大致过程: 1.登陆注册 2....

  • 个推集成

    个推集成 第一步 通过个推的官网下载SDK并集成SDK,两种方式,第一种直接拖拽,第二种cocaapods,(略过...

  • IOS集成个推总结

    IOS集成个推总结 标签(空格分隔): IOS IOS集成个推总结 集成注意点 1 去个推后台申请app的应用 如...

  • flutter七牛直播推流插件 Readme

    七牛直播推流插件 Android is OK IOS is developing 如何使用 Android集成在你...

  • 个推SDK的集成

    关于个推 实时推送的一款SDK,比较好用,稳定 如何把个推SDK集成到你的APP里 当然看SDK还是王道 我写一下...

  • 个推 集成过程

    当初选择 它,估计是表面上看它太简单了,集成只需要几分钟,结果,并不是那么如意,记录下问题首先,注册账号,打开官网...

  • uniapp推送流程

    首先这个功能在uniapp上面比较简单,因为uniPush集成了个推并且免费使用。 在manifest.json ...

  • iOS 个推集成 <笔记篇>

    参考个推集成方式① iOS集成视频[https://docs.getui.com/getui/mobile/ios...

网友评论

    本文标题:个推的集成使用

    本文链接:https://www.haomeiwen.com/subject/epcspttx.html