IOS本地,APNS远程推送(具体过程)

2024-08-28 03:48

本文主要是介绍IOS本地,APNS远程推送(具体过程),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

IOS本地,APNS远程推送(具体过程)

本地推送

添加本地推送

[cpp]  view plain copy
  1. ///本地添加  
  2. -(void)addLocalPushNotification:(UIButton*)sender;  
  3. {  
  4.       
  5.       
  6.     NSLog(@"%s",__FUNCTION__);  
  7.     UILocalNotification* localNotification=[[UILocalNotification alloc]init];  
  8.       
  9.     if (localNotification) {  
  10.         //设置时间当前加20秒  
  11.         NSDate* pushDate=[NSDate dateWithTimeIntervalSinceNow:20];  
  12.         /*推送时区设置:从网上搜到 
  13.         timeZone是UILocalNotification激发时间是否根据时区改变而改变,如果设置为nil的话,那么UILocalNotification将在一段时候后被激发,而不是某一个确切时间被激发。*/  
  14.         localNotification.timeZone=[NSTimeZone defaultTimeZone];  
  15.         ///推送时间设置  
  16.         localNotification.fireDate=pushDate;  
  17.         //时间间隔,若不设置将只会推送1次  
  18.         localNotification.repeatInterval=kCFCalendarUnitDay;  
  19.         //推送时的声音,(若不设置的话系统推送时会无声音)  
  20.         localNotification.soundName=UILocalNotificationDefaultSoundName;  
  21.         //推送的文字信息(若不设置,推送中心中不显示文字,有声音提示前提是设置有声音)  
  22.         localNotification.alertBody=@"Hello world";  
  23.         //推送时小图标的设置,PS:这个东西不知道还有啥用  
  24.         localNotification.alertLaunchImage=[[NSBundle mainBundle]pathForResource:@"3" ofType:@"jpg"];  
  25.           
  26.         ///这个东西,到时用于定位是哪个notification,以便取消用  
  27.         NSDictionary* infoDic=[NSDictionary dictionaryWithObject:@"name" forKey:@"key"];  
  28.         localNotification.userInfo=infoDic;  
  29.           
  30.         //讲推送设置以及信息加入  
  31.         UIApplication* app=[UIApplication sharedApplication];  
  32.         BOOL status=YES;  
  33.         for (UILocalNotification* notification in app.scheduledLocalNotifications) {  
  34.             if ([notification.userInfo objectForKey:@"key"]) {  
  35.                 status=NO;  
  36.             }  
  37.         }  
  38.           
  39.         if (status) {  
  40.             //加入推送(只能加入一次)  
  41.             [app scheduleLocalNotification:localNotification];  
  42.         }  
  43.           
  44.   
  45.           
  46.         NSLog(@"%@",app.scheduledLocalNotifications);  
  47.     }  
  48. }  


取消本地推送


[cpp]  view plain copy
  1. ///本地移除  
  2. -(void)removeLocalPushNotification:(UIButton*)sender  
  3. {  
  4.     NSLog(@"%s",__FUNCTION__);  
  5.     UIApplication* app=[UIApplication sharedApplication];  
  6.     //获取当前应用所有的通知  
  7.     NSArray* localNotifications=[app scheduledLocalNotifications];  
  8.   
  9.     if (localNotifications) {  
  10.           
  11.         for (UILocalNotification* notification in localNotifications) {  
  12.   
  13.             NSDictionary* dic=notification.userInfo;  
  14.               
  15.             if (dic) {  
  16.                 NSString* key=[dic objectForKey:@"key"];  
  17.                 if ([key isEqualToString:@"name"]) {  
  18.                     //取消推送 (指定一个取消)  
  19.                     [app cancelLocalNotification:notification];  
  20.                       
  21.                     break;  
  22.                 }  
  23.             }  
  24.   
  25.         }  
  26.     }  
  27.     //取消当前应用所有的推送  
  28.     //[app cancelAllLocalNotifications];  
  29.       
  30.       
  31. }  






远程推送

当服务端远程向APNS推送至一台离线的设备时,苹果服务器Qos组件会自动保留一份最新的通知,等设备上线后,Qos将把推送发送到目标设备上


客户端需要注意的

 bundle ID与App Id一致

设备Token能正常获取

若为沙盒测试,证书得使用developer的


单设备


如上图所示:我们的服务端将需要推送的相关信息提交到APNS(Apple Push Notification Service),由APNS在Push服务IOS设备列表中找到对应的设备,并将信息推到终端上,终端上再推到客户端APP上

多设备





流程大概是这样的

1.生成CertificateSigningRequest.certSigningRequest文件

2.将CertificateSigningRequest.certSigningRequest上传进developer,导出.cer文件

3.利用CSR导出P12文件

4.需要准备下设备token值(无空格)

5.使用OpenSSL合成服务器所使用的推送证书


1.打开钥匙串,在右上角选择(钥匙串访问->证书助理->从证书颁发机构请求证书)


生成 CertificateSigningRequest.certSigningRequest



以下信息填写号后,保存到对应位置




2.进入developer.apple.com中 上传CertificateSigningRequest.certSigningRequest并保存cer文件

(1)


(2)选择类型为 推送服务--沙盒测试用



(3)选中对应的APP ID,别忘了,项目配置文件中的Bundle ID与其一致


(4)选择保存路径


(5)选择上传文件 CertificateSigningRequest.certSigningRequest


(6)保存cer文件,并双击添加进钥匙串



(7)新建一个Provisioning Profiles





选中与前面一致的 App Id



选中刚才新建的certificates



选择可调试设备



保存provisioning文件,并将其加入设备中



通过OPENSSL文件合并

1.在钥匙串->证书 找到刚才所添加进去的证书 右键导出p12

2.进入终端 ,将aps_development.cer转成PushChatCert.pem(openssl x509 -in aps_development.cer -inform der  -out PushChatCert.pem)

3.openssl pkcs12 -nocerts -out PushChatKey.pem -in Push.p12  生成p12私钥 .pem文件(需设置密码,服务端推送时要用)

4.利用PushChatCert.pem和新生成的PushChatKey.pem合成一个新的p12文件(这个p12是提供给服务器推送用的)(

openssl pkcs12 -export -in PushChatCert.pem -inkey PushChatKey.pem -certfile CertificateSigningRequest.certSigningRequest -name "aps_developer_identity" -out aps_developer_identity.p12


合成PHP所用的PEM文件

  1.   openssl x509 -in aps_development.cer -inform der -out PushChatCert.pem
  2.  openssl pkcs12 -nocerts -out PushChatKey.pem -in Push.p12
  3. cat PushChatCert.pem PushChatKey.pem > newck.pem





代码实现如下


注册推送通知

[cpp]  view plain copy
  1. [[UIApplication sharedApplication] registerForRemoteNotificationTypes:  
  2. (UIRemoteNotificationTypeAlert|  
  3.  UIRemoteNotificationTypeBadge|  
  4.  UIRemoteNotificationTypeSound)];  


在AppDelegate中加入以下几个代理方法

[cpp]  view plain copy
  1. ///Token值成功获取的时候走的是这个方法(Token值不能带空格)  
  2. -(void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken  
  3. {  
  4.   
  5.     NSLog(@"%@",deviceToken);  
  6.   
  7. }  
  8. ///Token值获取失败的时候走的是这个方法  
  9. -(void)application:(UIApplication *)application didFailToRegisterForRemoteNotificationsWithError:(NSError *)error  
  10. {  
  11.   
  12.     NSLog(@"%@",error);  
  13. }  
  14. ///应用程序处在打开状态,且服务器有推送消息过来时,以及通过推送打开应用程序,走的是这个方法  
  15. -(void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo  
  16. {  
  17.     for (id key in userInfo) {  
  18.         NSLog(@"%@:%@",key, [userInfo objectForKey:key]);  
  19.     }  
  20.     ///Icon推送数量设为0  
  21. //    application.applicationIconBadgeNumber=0;  
  22. }  

应用程序不处在后台,且通过推送通知打开的时候,如果需要推送下来相关的信息可以在

[cpp]  view plain copy
  1. - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions  

方法中加入

[cpp]  view plain copy
  1. ///应用程序不处在后台,并且是通过推送打开应用的时候  
  2. if (launchOptions) {  
  3.     ///获取到推送相关的信息  
  4.     NSDictionary *userInfo = [launchOptions objectForKey:UIApplicationLaunchOptionsRemoteNotificationKey];  
  5. }  


服务端PHP推送代码

[cpp]  view plain copy
  1. <?php  
  2.     $deviceToken= 'ba6d5106503c8e62e68b5df1b36c3b58ced1588c6dabe0fc9e6828961aeb12d6'; //没有空格  
  3.     $body = array("aps" => array("alert" => 'helloHui',"badge" => 2,"sound"=>'default'));  //推送方式,包含内容和声音  
  4.     $ctx = stream_context_create();  
  5.     //如果在Windows的服务器上,寻找pem路径会有问题,路径修改成这样的方法:  
  6.     //$pem = dirname(__FILE__) . '/' . 'apns-dev.pem';  
  7.     //linux 的服务器直接写pem的路径即可  
  8.     stream_context_set_option($ctx,"ssl","local_cert","26ck.pem");  
  9.     $pass = "123123";  
  10.     stream_context_set_option($ctx, 'ssl', 'passphrase', $pass);  
  11.     //此处有两个服务器需要选择,如果是开发测试用,选择第二名sandbox的服务器并使用Dev的pem证书,如果是正是发布,使用Product的pem并选用正式的服务器  
  12. //    $fp = stream_socket_client("ssl://gateway.push.apple.com:2195", $err, $errstr, 60, STREAM_CLIENT_CONNECT, $ctx);  
  13.     $fp = stream_socket_client("ssl://gateway.sandbox.push.apple.com:2195", $err, $errstr, 60, STREAM_CLIENT_CONNECT, $ctx);  
  14.     if (!$fp) {  
  15.         echo "Failed to connect $err $errstrn";  
  16.         return;  
  17.     }  
  18.     print "Connection OK\n";  
  19.     $payload = json_encode($body);  
  20.     $msg = chr(0) . pack("n",32) . pack("H*", str_replace(' ', '', $deviceToken)) . pack("n",strlen($payload)) . $payload;  
  21.     echo "sending message :" . $payload ."\n";  
  22.     fwrite($fp, $msg);  
  23.     fclose($fp);?>  
[php]  view plain copy
  1. <pre></pre>  
  2. <pre></pre>  
  3. <pre></pre>  
  4. <pre></pre>  
  5. <pre></pre>  
  6. <pre></pre>  

这篇关于IOS本地,APNS远程推送(具体过程)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1113648

相关文章

浅析Spring Security认证过程

类图 为了方便理解Spring Security认证流程,特意画了如下的类图,包含相关的核心认证类 概述 核心验证器 AuthenticationManager 该对象提供了认证方法的入口,接收一个Authentiaton对象作为参数; public interface AuthenticationManager {Authentication authenticate(Authenti

作业提交过程之HDFSMapReduce

作业提交全过程详解 (1)作业提交 第1步:Client调用job.waitForCompletion方法,向整个集群提交MapReduce作业。 第2步:Client向RM申请一个作业id。 第3步:RM给Client返回该job资源的提交路径和作业id。 第4步:Client提交jar包、切片信息和配置文件到指定的资源提交路径。 第5步:Client提交完资源后,向RM申请运行MrAp

安卓链接正常显示,ios#符被转义%23导致链接访问404

原因分析: url中含有特殊字符 中文未编码 都有可能导致URL转换失败,所以需要对url编码处理  如下: guard let allowUrl = webUrl.addingPercentEncoding(withAllowedCharacters: .urlQueryAllowed) else {return} 后面发现当url中有#号时,会被误伤转义为%23,导致链接无法访问

【机器学习】高斯过程的基本概念和应用领域以及在python中的实例

引言 高斯过程(Gaussian Process,简称GP)是一种概率模型,用于描述一组随机变量的联合概率分布,其中任何一个有限维度的子集都具有高斯分布 文章目录 引言一、高斯过程1.1 基本定义1.1.1 随机过程1.1.2 高斯分布 1.2 高斯过程的特性1.2.1 联合高斯性1.2.2 均值函数1.2.3 协方差函数(或核函数) 1.3 核函数1.4 高斯过程回归(Gauss

【iOS】MVC模式

MVC模式 MVC模式MVC模式demo MVC模式 MVC模式全称为model(模型)view(视图)controller(控制器),他分为三个不同的层分别负责不同的职责。 View:该层用于存放视图,该层中我们可以对页面及控件进行布局。Model:模型一般都拥有很好的可复用性,在该层中,我们可以统一管理一些数据。Controlller:该层充当一个CPU的功能,即该应用程序

Solr 使用Facet分组过程中与分词的矛盾解决办法

对于一般查询而言  ,  分词和存储都是必要的  .  比如  CPU  类型  ”Intel  酷睿  2  双核  P7570”,  拆分成  ”Intel”,”  酷睿  ”,”P7570”  这样一些关键字并分别索引  ,  可能提供更好的搜索体验  .  但是如果将  CPU  作为 Facet  字段  ,  最好不进行分词  .  这样就造成了矛盾  ,  解决方法

Python:豆瓣电影商业数据分析-爬取全数据【附带爬虫豆瓣,数据处理过程,数据分析,可视化,以及完整PPT报告】

**爬取豆瓣电影信息,分析近年电影行业的发展情况** 本文是完整的数据分析展现,代码有完整版,包含豆瓣电影爬取的具体方式【附带爬虫豆瓣,数据处理过程,数据分析,可视化,以及完整PPT报告】   最近MBA在学习《商业数据分析》,大实训作业给了数据要进行数据分析,所以先拿豆瓣电影练练手,网络上爬取豆瓣电影TOP250较多,但对于豆瓣电影全数据的爬取教程很少,所以我自己做一版。 目

ORACLE语法-包(package)、存储过程(procedure)、游标(cursor)以及java对Result结果集的处理

陈科肇 示例: 包规范 CREATE OR REPLACE PACKAGE PACK_WMS_YX IS-- Author : CKZ-- Created : 2015/8/28 9:52:29-- Purpose : 同步数据-- Public type declarations,游标 退休订单TYPE retCursor IS REF CURSOR;-- RETURN vi_co_co

远程工具-SecureCRT/SecureFX

下载地址: https://www.portablesoft.org/securecrt-securefx-integrated/

【微服务】Ribbon(负载均衡,服务调用)+ OpenFeign(服务发现,远程调用)【详解】

文章目录 1.Ribbon(负载均衡,服务调用)1.1问题引出1.2 Ribbon负载均衡1.3 RestTemplate整合Ribbon1.4 指定Ribbon负载均衡策略1.4.1 配置文件1.4.2 配置类1.4.3 定义Ribbon客户端配置1.4.4 自定义负载均衡策略 2.OpenFeign面向接口的服务调用(服务发现,远程调用)2.1 OpenFeign的使用2.1 .1创建