iOS 个推推送原理

你知道吗?APNs和APNs Server不一样。

APNs(英文全称:Apple Push Notification service)中文翻译为:苹果推送通知服务。该技术由苹果公司提供的APNs服务。
APNs Server(英文全称:Apple Push Notification service Server)中文翻译为:苹果推送通知服务服务器。


以下图片来自网络


image.png

从上图我们可以看到:
1、应用程序注册消息推送。
2、iOS从APNs获取device Token,应用程序接收device Token。
3、应用程序将device token发送给PUSH服务端程序。
4、服务端程序向APNS服务发送消息。
5、APNS服务将消息发送给iPhone应用程序。


推送原理、流程

1.应用程序Application(简称:APP)注册远程通知。

if ([[UIDevice currentDevice].systemVersion floatValue] >= 10.0) {
        
#if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_10_0 // Xcode8及以上编译 会调用
        UNUserNotificationCenter *center = [UNUserNotificationCenter currentNotificationCenter];
        // 让当前控制器成为UNUserNotificationCenter的代理
        center.delegate = self;
        NSLog(@"当前控制器成为UNUserNotificationCenter的代理");
        [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];
        NSLog(@"注册通知了呀");
#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];
         NSLog(@"大于iOS8 注册通知了呀");
    } else {// 小于8
        UIRemoteNotificationType apn_type = (UIRemoteNotificationType)(UIRemoteNotificationTypeAlert |
                                                                       UIRemoteNotificationTypeSound |
                                                                       UIRemoteNotificationTypeBadge);
        [[UIApplication sharedApplication] registerForRemoteNotificationTypes:apn_type];
    }

2.iOS从APNS Server接收到了一个deviceToken。即通过如下代理方法接收deviceToken。
3.然后在该方法中访问 registerDeviceToken:来实现将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];
    
}

4.雇主发单的那一刻是触发推送的动作 [这个很重要,这个很重要,这个很重要]。即:雇主发单访问后台提供的某个接口(我们公司是blog_add这个接口)的时候,后台(PHP服务端)拿到前端的订单数据,通过个推提供的SDK将这些订单数据传递给个推服务器,

<?php
//个推配制
//IOS的
define('HOST','http://sdk.open.api.igexin.com/apiex.htm');

define('IOS_APPID','7TAkJR6vmaAmDmRMvWlo54');
define('IOS_APPKEY','MteECOmflA9xHWcNxuzYu2');
define('IOS_MASTERSECRET','J5EUVh6re3AUGvcQocc8H1');
//安卓的
define('ANDROID_APPID','7TAkJR6vmaAmDmRMvWlo54');
define('ANDROID_APPKEY','MteECOmflA9xHWcNxuzYu2');
define('ANDROID_MASTERSECRET','J5EUVh6re3AUGvcQocc8H1');
//引入个推推送
require_once(dirname(__FILE__) . '/' . 'IGt.Push.php');
require_once(dirname(__FILE__) . '/' . 'igetui/IGt.AppMessage.php');
require_once(dirname(__FILE__) . '/' . 'igetui/IGt.APNPayload.php');
require_once(dirname(__FILE__) . '/' . 'igetui/template/IGt.BaseTemplate.php');
require_once(dirname(__FILE__) . '/' . 'igetui/utils/AppConditions.php');
function sys_push($sql_helper,$deviceType,$clientID,$msgContent,$keyType=0,$keyID=0,$nickname,$client_notice,$msgtype=1){
    pushMessageToSingle($deviceType,$clientID,$msgContent,$keyType,$keyID,$nickname,$client_notice);
}

//推送到用户列表
function sys_list_push($cid_list,$msgContent,$keyType=0,$keyID=0,$temp_ietm="",$client_notice,$msgtype=1){
    pushMessageToList($cid_list,$msgContent,$keyType,$keyID,$temp_ietm,$client_notice);
}

//推送到整个app
function sys_app_push($msgContent,$keyType=0,$keyID=0,$msgtype=1){
    //sys_log("sys_app_push");
    pushMessageToApp($msgContent,$keyType,$keyID);
}

//单推接口
function pushMessageToSingle($deviceType,$clientID,$msgContent,$keyType,$keyId,$nickname,$client_notice){
    $host = HOST;
    if($deviceType == 1){//苹果
        $appid = IOS_APPID;
        $appkey = IOS_APPKEY;
        $mastersecret = IOS_MASTERSECRET;
    }
    else{//安卓
        $appid = ANDROID_APPID;
        $appkey = ANDROID_APPKEY;
        $mastersecret = ANDROID_MASTERSECRET;
    }
    $igt = new IGeTui($host,$appkey,$mastersecret);
    //消息模版:透传功能模板
    $template = IGtTransmissionTemplateDemo($appid,$appkey,$msgContent,$keyType,$keyId,$nickname,$client_notice);
    //个推信息体
    $message = new IGtSingleMessage();

    $message->set_isOffline(true);//是否离线
    $message->set_offlineExpireTime(3600*12*1000);//离线时间
    $message->set_data($template);//设置推送消息类型
    //  $message->set_PushNetWorkType(0);//设置是否根据WIFI推送消息,1为wifi推送,0为不限制推送
    //接收方
    $target = new IGtTarget();
    $target->set_appId($appid);
    $target->set_clientId($clientID);
    //    $target->set_alias(Alias);
    try {
        $rep = $igt->pushMessageToSingle($message, $target);
        sys_log($rep);
        var_dump($rep);
        echo ("<br><br>");
    }catch(RequestException $e){
        $requstId =e.getRequestId();
        $rep = $igt->pushMessageToSingle($message, $target,$requstId);
        sys_log($rep."--");

        var_dump($rep);
        echo ("<br><br>");
    }
}

//多推接口案例
function pushMessageToList($cid_list,$msgContent,$keyType,$keyId,$temp_ietm="",$client_notice){ 
    putenv("gexin_pushList_needDetails=true");
    $deviceType = 1;
    $host = HOST;
    if($deviceType == 1){//苹果
        $appid = IOS_APPID;
        $appkey = IOS_APPKEY;
        $mastersecret = IOS_MASTERSECRET;
    }
    else{//安卓
        $appid = ANDROID_APPID;
        $appkey = ANDROID_APPKEY;
        $mastersecret = ANDROID_MASTERSECRET;
    }
    $igt = new IGeTui($host,$appkey,$mastersecret);
    //消息模版:透传功能模板
    $template = IGtTransmissionTemplateDemo($appid,$appkey,$msgContent,$keyType,$keyId,$temp_ietm,$client_notice);
    //个推信息体
    $message = new IGtListMessage();
    $message->set_isOffline(true);//是否离线
    $message->set_offlineExpireTime(3600*12*1000);//离线时间
    $message->set_data($template);//设置推送消息类型
    //$message->set_PushNetWorkType(1);//设置是否根据WIFI推送消息,1为wifi推送,0为不限制推送
    $contentId = $igt->getContentId($message);
    //接收方1
    sys_log(4);
    $cid_list_a = explode(",",$cid_list);
    $targetList = array();
    foreach ($cid_list_a as $cid){
        $target1 = new IGtTarget();
        $target1->set_appId($appid);
        $target1->set_clientId($cid);
        $targetList[] = $target1;
    }
    $rep = $igt->pushMessageToList($contentId, $targetList);
}

//推送到整个APP
function pushMessageToApp($msgContent,$keyType,$keyId){
    sys_log($msgContent);
    $deviceType = 1;
    $host = HOST;
    if($deviceType == 1){//苹果
        $appid = IOS_APPID;
        $appkey = IOS_APPKEY;
        $mastersecret = IOS_MASTERSECRET;
    }
    else{//安卓
        $appid = ANDROID_APPID;
        $appkey = ANDROID_APPKEY;
        $mastersecret = ANDROID_MASTERSECRET;
    }
    $igt = new IGeTui($host,$appkey,$mastersecret);
    //消息模版:透传功能模板
    $template = IGtTransmissionTemplateDemo($appid,$appkey,$msgContent,$keyType,$keyId);

    //个推信息体
    //基于应用消息体
    $message = new IGtAppMessage();
    $message->set_isOffline(true);
    $message->set_offlineExpireTime(3600*12*1000);//离线时间单位为毫秒,例,两个小时离线为3600*1000*2
    $message->set_data($template);
    //$message->set_PushNetWorkType(1);//设置是否根据WIFI推送消息,1为wifi推送,0为不限制推送
    $message->set_speed(100);// 设置群推接口的推送速度,单位为条/秒,例如填写100,则为100条/秒。仅对指定应用群推接口有效。
    $message->set_appIdList(array($appid));
    $rep = $igt->pushMessageToApp($message);

}


function IGtTransmissionTemplateDemo($appid,$appkey,$msgContent,$keyType,$keyId,$temp_ietm="",$client_notice="default"){
    $msg = array(
        'keyType' => $keyType,
        'keyId' => $keyId,
        'msg' => $msgContent,
        'nickname' => $temp_ietm
    );
    $msg = json_encode($msg);
    $template =  new IGtTransmissionTemplate();
    $template->set_appId($appid);//应用appid
    $template->set_appkey($appkey);//应用appkey
    $template->set_transmissionType(2);//透传消息类型
    $template->set_transmissionContent($msg);//透传内容
   
    //APN高级推送
    $apn = new IGtAPNPayload();
    $alertmsg=new DictionaryAlertMsg();
    $alertmsg->body=$msgContent;
    $alertmsg->actionLocKey="ActionLockey";
    $alertmsg->locKey=$msgContent;
    $alertmsg->locArgs=array("locargs");
    $alertmsg->launchImage="launchimage";
    //        IOS8.2 支持
    $alertmsg->title=SYS_ZH_NAME;
    $alertmsg->titleLocKey=SYS_ZH_NAME;
    $alertmsg->titleLocArgs=array("TitleLocArg");

    $apn->alertMsg=$alertmsg;
    $apn->badge=1;
    $apn->sound=$client_notice;
    $apn->add_customMsg("payload","payload");
    $apn->add_customMsg("keyType",$keyType);
    $apn->add_customMsg("keyId",$keyId);
    $apn->add_customMsg("nickname",$nickname);
    $apn->add_customMsg("msg",$msgContent);
    $apn->contentAvailable=0;
    $apn->category="ACTIONABLE";
    $template->set_apnInfo($apn);

    return $template;
}



?>


5.个推服务器通过后台传给它的IOS_APPID,找到IOS_APPID所绑定的CID, 然后个推服务器将订单数据和CID一起发送给了 APNs Server。
个推服务器能直接与APNs Server沟通的原因是:之前已经将deviceToken交给个推服务器了,并且生产证书、开发证书等已经放在个推平台上了。

  • 应用程序之前注册个推的代码,以及在个推提供的代理方法中收到个推返回的cid。我觉得这里有必要粘贴出来。


- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions{
       ...
// 应用程序注册个推
 [GeTuiSdk startSdkWithAppId:kGtAppId appKey:kGtAppKey appSecret:kGtAppSecret delegate:self];
       ... 
}



/** SDK启动成功返回cid */
- (void)GeTuiSdkDidRegisterClient:(NSString *)clientId{
    // 我的clientId为:513a8ec3ae28a63f0dae0499b894f868
  
    // 个推SDK已注册,返回clientId
    NSLog(@"\n>>>[GeTuiSdk RegisterClient]:%@\n\n", clientId);
    //--------------------把clientId通过硬件注册接口(在requestSaveDeviceLogin方法里)传给服务器。。。
    _mychannelid = clientId;
    if (_isLogin) {
        [self requestSaveDeviceLogin];
    }
}

6.APNs在自身的已注册Push服务的设备列表中,查找相应标识的手机设备,并把消息发到手机设备上。

7.手机设备把发来的消息传递给一秒xxAPP, 并且以 通知栏通知/顶部弹框/角标的形式 展示到手机上。

8.在实现的个推提供的代理方法中会收到个推的回调,可以得到个推的透传消息(分为离线和在线),我们一秒xxAPP可以拿到里面的json数据做想要的操作,比如更新UI,文字转语音,跳转界面等等。

.......................

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,313评论 6 496
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,369评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,916评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,333评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,425评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,481评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,491评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,268评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,719评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,004评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,179评论 1 342
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,832评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,510评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,153评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,402评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,045评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,071评论 2 352

推荐阅读更多精彩内容

  • 极光推送: 1.JPush当前版本是1.8.2,其SDK的开发除了正常的功能完善和扩展外也紧随苹果官方的步伐,SD...
    Isspace阅读 6,715评论 10 16
  • 前言 我们在实现推送功能的时候,更需要了解下推送的原理机制,这样我们在发现问题时候才好定位到问题的解决办法。 推送...
    進无尽阅读 3,839评论 0 5
  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,644评论 18 139
  • 推送通知,是现在的应用必不可少的功能。那么在 iOS 中,我们是如何实现远程推送的呢?iOS 的远程推送原理又是什...
    皮皮瑞阅读 1,299评论 0 3
  • 注:此文只现在已经不能适配iOS10了,iOS10推送采用了新的方法,做iOS9及以下的系统可读此篇文章。 最近公...
    TIME_for阅读 33,272评论 85 322