博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iOS客户端的APNS服务简介与实现
阅读量:6376 次
发布时间:2019-06-23

本文共 4178 字,大约阅读时间需要 13 分钟。

APNs --Apple Push Notification Service
APNs 苹果推送服务器
Device 安装带有推送服务程序的iPhone手机
Provider 程序服务器,把需要推送的信息发给 APNs
DeviceToken 在Device第一次连接APNs时,由APNs生成的经过加密的连接认证信息。在以后的连接中,无论时Provider到APNs还是APNs到Device 都需要 DeviceToken作为认证。
Payload 需要推送的消息的主体内容。alert-alert消息的消息体,按键标题等badge-显示在程序icon右上角的数字,sound-声音提示文件的文件名,该声音资源文件要在程序包中。
整体流程大体分为五个步骤:
1: 
Device --> 连接--> 
APNs 
获取 DeviceToken
2: 
Device
-->连接--
>
Provider
提供
DeviceToken
3: 
Provider侦测需要push的消息生成Notification信息
4: 
Provider侦把要push的消息推送到APNs
5: 
APNs把该消息推送到手机
 
介绍完APNS的概况,下面再了解一下具体的实现方法:
注:先申请APNS的证书,再进行以下操作。
1. 将app注册notification里面, 并从APNS上获取测试机的deviceToken.
 
  1. - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
  2.    [[UIApplication sharedApplication] registerForRemoteNotificationTypes:(UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeSound)];
  3.        // other codes here.
  4.    return YES;
  5. }
  6.  
  7. - (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken {
  8.    NSLog(@”deviceToken: %@”, deviceToken);
  9. }
  10.  
  11. - (void)application:(UIApplication *)application didFailToRegisterForRemoteNotificationsWithError:(NSError *)error {
  12.    NSLog(@”Error in registration. Error: %@”, error);
  13. }
  14.  
  15. - (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo
  16. {
  17.    NSLog(@” 收到推送消息 : %@”,[[userInfo objectForKey:@"aps"] objectForKey:@”alert”]);
  18.    if ([[userInfo objectForKey:@"aps"] objectForKey:@”alert”]!=NULL) {
  19.        UIAlertView* alert = [[UIAlertView alloc] initWithTitle:@”推送通知”
  20.                                                        message:[[userInfo objectForKey:@"aps"] objectForKey:@”alert”]
  21.                                                       delegate:self
  22.                                              cancelButtonTitle:@” 关闭”
  23.                                              otherButtonTitles:@” 更新状态”,nil];
  24.        [alert show];
  25.        [alert release];
  26.    }
  27. }
 
启动程序,将app注册到通知项后,在console里面找到打印的deviceToken:
 
  1. deviceToken: <6974ac11 870e09fa 00e2238e 8cfafc7d 2052e342 182f5b57 fabca445 42b72e1b>
 
2. 生成app在服务端需要的许可证
1)进入Provisioning Portal, 下载Certificates在development下的证书。
2) 找到需要测试的app id,然后enable它在development下的Apple Push Notification service: Development Push SSL Certificate。需要输入1)中的签名证书才可以生成一个aps_developer_identity.cer.
3) 双击aps_developer_identity.cer,会打开系统的key chain. 在My certificates下找到Apple Development Push Services。需要为certificate和它之下的private key各自export出一个.p12文件。(会出现设置密码过程)
4)需要将上面的2个.p12文件转成.pem格式:
 
  1. openssl pkcs12 -clcerts -nokeys -out cert.pem -in cert.p12
 
 
 
  1. openssl pkcs12 -nocerts -out key.pem -in key.p12
 
5)如果需要对 key不进行加密:
 
  1. openssl rsa -in key.pem -out key.unencrypted.pem
 
6)然后就可以 合并两个.pem文件, 这个ck.pem就是服务端需要的证书了。
 
  1. cat cert.pem key.unencrypted.pem > ck.pem
 
3. 服务端push通知到ANPS. 在cocoachina找到了两种方法:
1)php驱动。需要将ck.pem和php脚本放到server 上。全部的php代码是:
 
  1. <?php
  2. $deviceToken = ’6974ac11 870e09fa 00e2238e 8cfafc7d 2052e342 182f5b57 fabca445 42b72e1b’;
  3. $pass = ’123456′;   // Passphrase for the private key (ck.pem file)
  4.  
  5. // Get the parameters from http get or from command line
  6. $message = $_GET['message'] or $message = $argv[1] or $message = ‘A test message from worldcup’;
  7. $badge = (int)$_GET['badge'] or $badge = (int)$argv[2];
  8. $sound = $_GET['sound'] or $sound = $argv[3];
  9.  
  10. // Construct the notification payload
  11. $body = array();
  12. $body['aps'] = array(‘alert’ => $message);
  13. if ($badge)
  14.  $body['aps']['badge'] = $badge;
  15. if ($sound)
  16.  $body['aps']['sound'] = $sound;
  17.  
  18. /* End of Configurable Items */
  19. $ctx = stream_context_create();
  20. stream_context_set_option($ctx, ‘ssl’, ‘local_cert’, ‘ck.pem’);
  21. // assume the private key passphase was removed.
  22. stream_context_set_option($ctx, ‘ssl’, ‘passphrase’, $pass);
  23.  
  24. // connect to apns
  25. $fp = stream_socket_client(‘ssl://gateway.sandbox.push.apple.com:2195′, $err, $errstr, 60, STREAM_CLIENT_CONNECT, $ctx);
  26. if (!$fp) {
  27.    print “Failed to connect $err $errstr\n”;
  28.    return;
  29. }
  30. else {
  31.   print “Connection OK\n<br/>”;
  32. }
  33.  
  34. // send message
  35. $payload = json_encode($body);
  36. $msg = chr(0) . pack(“n”,32) . pack(‘H*’, str_replace(‘ ‘, ”, $deviceToken)) . pack(“n”,strlen($payload)) . $payload;
  37. print “Sending message :” . $payload . “\n”;
  38. fwrite($fp, $msg);
  39. fclose($fp);
  40. ?>
 
请 求一次 http://127.0.0.1/apns /apns.php?message=A%20test%20message%20from%20localhost&badge=2& sound=received5.caf就 会向APNS进行一次推送。我的请求结果如下:
 
  1. Connection OK
                2. Sending message :{“aps”:{“alert”:”A test message from localhost”,”badge”:2,”sound”:”received5.caf”}}
转自

转载地址:http://prvqa.baihongyu.com/

你可能感兴趣的文章
关于快乐数的算法
查看>>
day11-RabbitMQ direct广播模式
查看>>
vue笔记三(组件)
查看>>
9月9日,We7插件商场正式上线
查看>>
WPF and Silverlight 学习笔记(五):WPF应用程序管理
查看>>
VC6.0将程序打包成一个可执行文件(release)
查看>>
如何根据条件隐藏列
查看>>
es6中新增的常用数值扩展
查看>>
centos,nginx安装备忘
查看>>
GCD使用经验与技巧浅谈
查看>>
Elasticsearch 统计代码例子
查看>>
POJ 2208--Pyramids(欧拉四面体体积计算)
查看>>
MongoDB整理笔记の减少节点
查看>>
51nod 1385凑数字(字符串+构造)
查看>>
PHP中整合UCHOME中上传头像插件
查看>>
mysql 命令汇总
查看>>
矢量化的HTML5拓扑图形组件设计
查看>>
IT 专业人员应该了解的有关 Windows 7 的十件事
查看>>
Nginx基于TCP/UDP端口的四层负载均衡(stream模块)配置梳理
查看>>
【Spark 深入学习 01】 Spark是什么鬼?
查看>>