APNS 服务推送通知

本文作者为CocoaChina会员“marshluca”,帖子地址 http://www.cocoachina.com/bbs/read.php?tid-20723.html

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
18     NSLog(@" 收到推送消息 : %@",[[userInfo objectForKey:@"aps"] objectForKey:@"alert"]);
19     if ([[userInfo objectForKey:@"aps"] objectForKey:@"alert"]!=NULL) {
20         UIAlertView* alert = [[UIAlertView alloc] initWithTitle:@"推送通知"
21                                                         message:[[userInfo objectForKey:@"aps"] objectForKey:@"alert"]
22                                                        delegate:self
23                                               cancelButtonTitle:@" 关闭"
24                                               otherButtonTitles:@" 更新状态",nil];
25         [alert show];
26         [alert release];
27     }
28 }

启动程序,将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.  1 $deviceToken = ‘6974ac11 870e09fa 00e2238e 8cfafc7d 2052e342 182f5b57 fabca445 42b72e1b‘;
     2 $pass = ‘123456‘;   // Passphrase for the private key (ck.pem file)
     3
     4 // Get the parameters from http get or from command line
     5 $message = $_GET[‘message‘] or $message = $argv[1] or $message = ‘A test message from worldcup‘;
     6 $badge = (int)$_GET[‘badge‘] or $badge = (int)$argv[2];
     7 $sound = $_GET[‘sound‘] or $sound = $argv[3];
     8
     9 // Construct the notification payload
    10 $body = array();
    11 $body[‘aps‘] = array(‘alert‘ => $message);
    12 if ($badge)
    13   $body[‘aps‘][‘badge‘] = $badge;
    14 if ($sound)
    15   $body[‘aps‘][‘sound‘] = $sound;
    16
    17 /* End of Configurable Items */
    18 $ctx = stream_context_create();
    19 stream_context_set_option($ctx, ‘ssl‘, ‘local_cert‘, ‘ck.pem‘);
    20 // assume the private key passphase was removed.
    21 stream_context_set_option($ctx, ‘ssl‘, ‘passphrase‘, $pass);
    22
    23 // connect to apns
    24 $fp = stream_socket_client(‘ssl://gateway.sandbox.push.apple.com:2195‘, $err, $errstr, 60, STREAM_CLIENT_CONNECT, $ctx);
    25 if (!$fp) {
    26     print "Failed to connect $err $errstr\n";
    27     return;
    28 }
    29 else {
    30    print "Connection OK\n
    31 ";
    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"}}

2)pushMeBaby 驱动。将aps_developer_identity.cer导入到project里面,改名为apns.cer。

时间: 2024-10-13 14:40:44

APNS 服务推送通知的相关文章

APNS 远程推送通知 PUSH deviceToken

服务器向客户端推送消息: 当应用程序推到后台,或者根本就没有运行(我们的代码无能为力)      如果这种情况之下,应用程序想和用户交互(传统的做法 不可能) 推送 APNS:Apple Push Notification Service deviceToken:标示某一台iPhone上的某一个应用程序 1.(用户必须确认需要收到推送消息)注册远程通知中心向APNS获取64位的字符串deviceToken 注册远程通知中心 [[UIApplication sharedApplication] r

苹果iOS APNS消息推送通知

参考链接: http://www.tairan.com/archives/194 http://www.tairan.com/archives/240 https://developer.apple.com/library/ios/documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/Chapters/ProvisioningDevelopment.html#//apple_ref/doc/uid/TP40008194

苹果推送通知服务APNs编程(转)

add by zhj: 下面的几篇文章也非常好, http://www.raywenderlich.com/32960/apple-push-notification-services-in-ios-6-tutorial-part-1 http://www.raywenderlich.com/32963/apple-push-notification-services-in-ios-6-tutorial-part-2 http://blog.csdn.net/chenglibin1988/art

【PHP】iOS推送通知以及反馈服务

近来项目是完成一个PHP的推送服务器,无论是PHP,APNs还是GCM基本上都是从零开始. 写下一点见解,方便以后继续做代码的搬运工. 因为对PHP跟iOS都不熟悉,可能有错漏...穷孩子没有用过iOS的东西... 设备如果希望能够及时收到服务器的消息,大概有三种方式: 1)轮询(Pull)方式:客户端与服务器主动连接查询.因为及时性以及耗电量等要求不可得兼,一般不考虑. 2)SMS(Push)方式:在Android平台,可以通过拦截SMS消息并且解析消息内容来了解服务器的意图,并获取其显示内容

wp8.1 Study16:网络之 使用Azure移动服务及利用Azure推送通知服务

一.WP8.1有关网络的API WP8.1与其它平台的对比如下图: 二.Azure移动服务 前提: Azure移动服务可以让使用者的数据存放在云空间,从而方便使用者的App在不同平台上的数据共享. 1.在App添加Azure服务 (注意:如果微软账户没有添加Azure移动服务,那么你没有上图界面且不能进行下步) 当成功添加Azure后,会自动在项目的引用下添加有关Azure移动服务客户端库,同时也会在APP.xaml.cs添加对Microsoft.WindowsAzure.MobileServ-

Apple推送通知服务教程

Apple推送通知服务教程 生成APP ID和SSL证书 登录iOS Provisioning Portal页面 首先,我们将要新建一个App ID. 每一个推送APP都需要一个唯一的对应的App ID,推送的消息将被送达到这个ID对应的APP应用中(这里不能使用通配ID). 在iOS Provisioning Portal页面左侧选择 App IDs,然后点击 New App ID 的按钮. 在例子中,对应的表单项填的值如下: · Description: PushChat · Bundle

APNs 推送通知

一.CSR文件 1.生成Certificate Signing Request(CSR) 2.填写你的邮箱和常用名称,并选择保存到硬盘. 二.SSL certificate文件 1.通过刚生成的 .certSigningRequest添加测试推送证书(发布推送证书同理) 2.下载下来双击安装 3.打开钥匙串->我的证书,右击选择导出该证书(若没有该选项 点击他处再右击),给证书创建一个密码 注:JAVA后台用这个.p12证书就好,需要.pem证书的还需要如下步骤: APNS证书导出pem ope

制作苹果推送通知APNS服务器证书文件

1.准备证书申请文件 打开苹果电脑实用工具里的钥匙串访问程序 选择钥匙串访问—>证书助理—>从证书颁发机构申请证书 输入邮件地址,常用名词随便命名,在这里命名为APNS 选择存储到磁盘,将生成的APNS.certSigningRequest文件保存到本地磁盘 此时,在钥匙串访问程序的密钥(Keys)分类里应该可以找到APNS的专用密钥,右键点击导出“APNS”将专用密钥导出为p12文件,保存时会提示输入口令,输入后生成APNS.p12文件 2.准备App ID和SSL证书 登陆苹果开发者门户,

Clojure:两步发送iOS推送通知(apns)

首先在project.clj中,添加对notnoop 类库的引用:[com.notnoop.apns/apns "0.2.3"] 然后使用如下方法就可以发送推送消息了: 1 (ns demo.apns 2 (:import (com.notnoop.apns APNS))) 3 4 (defn send-push-notification 5 [device-tokens message] 6 (loop [rest-device-tokens device-tokens 7 sent