IOS---APNS 消息推送实践

 


首先,需要一个pem的证书,该证书需要与开发时签名用的一致。 具体生成pem证书方法如下:

1. 登录到 iPhone Developer Connection Portal(http://developer.apple.com/iphone/manage/overview/index.action ) 并点击 App IDs

2. 选择对应App ID。(开发与发布不一样的。需注意)

3. 点击App ID旁的“Configure”,然后按下按钮生产 推送通知许可证。根据“向导” 的步骤生成一个签名并上传,最后下载生成的许可证。

4. 通过双击.cer文件将你的 aps_developer_identity.cer 引入Keychain中。

6. 单机“Apple Development Push Services”,导出p12文件,保存为 apns-dev-cert.p12 文件。

7. 扩展“Apple Development Push Services” 对“Private Key”做同样操作,保存为 apns-dev-key.p12 文件。

8. 需要通过终端命令将这些文件转换为PEM格式:

openssl pkcs12 -clcerts -nokeys -out apns-dev-cert.pem -in apns-dev-cert.p12

openssl pkcs12 -nocerts -out apns-dev-key.pem -in apns-dev-key.p12

9. 如果你想要移除密码,要么在导出/转换时不要设定或者执行:

openssl rsa -in apns-dev-key.pem -out apns-dev-key-noenc.pem

10. 最后,你需要将键和许可文件合成为apns-dev.pem文件,此文件在连接到APNS时需要使用:

cat apns-dev-cert.pem apns-dev-key-noenc.pem > apns-dev.pem

 

PHP后台写法:

复制代码
<? php   //  这里是我们上面得到的deviceToken,直接复制过来(记得去掉空格)//deviceToken 在测试版本和上线版本上不一样。 //lei ipod touch  $deviceToken = '06fe0a85056f6b9f07fb11a4eed962aaab824b9522660a8bb165b369717159ab' ;   //  Put your private key's passphrase here:  $passphrase = 'abc123456' ;   //  Put your alert message here:  $message = 'My first push test!' ;   // //  $message =  array('msg'=>'小小说阅读器','title'=>'小小说','url'=>' http://www.apple.com.cn' );   // $message = array('msg'=>'去商品详细页面','itemtype'=>'2','id'=>'192172'); //$message = array('msg'=>'去菜单页面','itemtype'=>'1','zktype'=>'1','order'=>'1','zksubtype'=>'1','zktitle'=>'9.9包邮'); //$message = array('msg'=>'软件升级'); $ctx =  stream_context_create ();   stream_context_set_option( $ctx, 'ssl', 'local_cert', 'ck_dev.pem' );  stream_context_set_option( $ctx, 'ssl', 'passphrase',  $passphrase );   //  Open a connection to the APNS server //这个为正是的发布地址 //$fp = stream_socket_client('ssl://gateway.push.apple.com:2195', $err, $errstr, 60, STREAM_CLIENT_CONNECT, $ctx); //这个是沙盒测试地址,发布到appstore后记得修改哦  $fp =  stream_socket_client('ssl://gateway.sandbox.push.apple.com:2195',  $err$errstr, 60, STREAM_CLIENT_CONNECT|STREAM_CLIENT_PERSISTENT,  $ctx );   if (! $fp )   exit("Failed to connect:  $err  $errstr" .  PHP_EOL );  echo 'Connected to APNS' .  PHP_EOL ;   //  Create the payload body  $body['aps'] =  array (  'alert' => '逗你玩!哈哈。', 'sound' => 'beep.wav', 'badge' => 1  );   $body['type']=2 ;   $body['data']= $message ;   //  Encode the payload as JSON  $payload = json_encode( $body );   //  Build the binary notification  $msg =  chr(0) .  pack('n', 32) .  pack('H*',  $deviceToken) .  pack('n',  strlen( $payload)) .  $payload ;   //  Send it to the server  $result =  fwrite( $fp$msgstrlen( $msg ));   if (! $result )   echo 'Message not delivered' .  PHP_EOL ;   else  echo 'Message successfully delivered' .  PHP_EOL ;   //  Close the connection to the server fclose( $fp );  ?>
复制代码

 

 

客户端代码:

复制代码
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary * )launchOptions{  
    self.window 
=  [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease];   //  Override point for customization after application launch.  
    main 
=  [[MainViewController alloc] init];  
    navMain 
=  [[UINavigationController alloc] initWithRootViewController:main];  
    self.window.rootViewController 
=  navMain;  
    notifiDic 
=  [[NSMutableDictionary alloc] init]; 
    [self initNotification];
    [UIApplication sharedApplication].applicationIconBadgeNumber 
0 ;
NSLog(
@" launchOption==%@ " ,[launchOptions objectForKey:UIApplicationLaunchOptionsRemoteNotificationKey]); 
if ([launchOptions objectForKey:UIApplicationLaunchOptionsRemoteNotificationKey] !=  nil) 

       if (notifiDic.count !=  0 ) {  
        [notifiDic removeAllObjects];
     }  
    [notifiDic setDictionary:(NSDictionary 
* )[launchOptions objectForKey:UIApplicationLaunchOptionsRemoteNotificationKey]];     UIAlertView *alert = [[UIAlertView alloc] initWithTitle: @" didFinishLaunching " message:[NSString     stringWithFormat: @" didFinishLaunching:\n%@ ",launchOptions]  delegate:self cancelButtonTitle: @" Cancek "otherButtonTitles: @" OK " , nil];    
     [alert show]; 
     alert.tag 
101
     [alert release];
}  
    self.window.backgroundColor 
=  [UIColor whiteColor]; 
    [self.window makeKeyAndVisible]; 
    return  YES;、
}
 
- ( void )initNotification{ 
     [[UIApplication sharedApplication]registerForRemoteNotificationTypes:(UIRemoteNotificationTypeAlert 
     
|UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeSound)];
}

#pragma
 mark
--( void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData * )deviceToken{  
    NSLog(
@" deviceToken: %@ " , deviceToken);
    NSLog(
@" deviceToken===%@ " ,[deviceToken description]); 
    NSRange _range 
= NSMakeRange( 1,[[deviceToken description] length]- 2 ); 
    NSString 
*deviceTokenStr =  [[deviceToken description] substringWithRange:_range];     NSLog( @" deviceTokenStr==%@ " ,deviceTokenStr); 
    deviceTokenStr 
= [deviceTokenStr stringByReplacingOccurrencesOfString: @"  " withString: @"" ];     NSLog( @" deviceTokenStr==%@ " ,deviceTokenStr);  
    UIAlertView 
*alertView = [[UIAlertView alloc] initWithTitle: @" product deviceToken " message:deviceTokenStr  delegate:nil     cancelButtonTitle: @" OK "  otherButtonTitles:nil, nil];
[    alertView show]; [alertView release]; }
 
- ( void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary * )userInfo{ NSLog( @" %s,,,,%@ " ,__func__,userInfo);   if (notifiDic.count !=  0 ) { [notifiDic removeAllObjects]; 
}  
[notifiDic setDictionary:userInfo]; 
UIAlertView 
*alert = [[UIAlertView alloc] initWithTitle: @"" message:[NSString stringWithFormat: @" 受到的通知如下:\n%@ ",userInfo]  delegate:self cancelButtonTitle: @" Cancel " otherButtonTitles: @" OK " , nil]; [alert show]; alert.tag 100 ; [alert release];
}
 
- ( void)application:(UIApplication *)app didFailToRegisterForRemoteNotificationsWithError:(NSError * )err {  
NSLog(
@" %s " ,__func__);
}
复制代码

 

注意点:

1.推送证书都弄好后,项目的开发证书要重新下载一下。

1.反馈服务

Apple 还提供了一个  馈服务 ,你应该定期查询。它提供了一个以前使用过但不再有效的(例如用户卸载了你的iPhone程序)设备令牌列表。你可以从你的数据库中删除这些设备令牌。

本教程不涉及反馈服务的使用。

 

 

2.创建载荷

使用 PHP 很容易根据数组并  换成 JSON而创建载荷:

$payload['aps'] = array('alert' => 'This is the alert text', 'badge' => 1, 'sound' => 'default');

$payload = json_encode($payload);

显示 $payload 的内容可以看到传送到APNS  JSON字符串:

{

     "aps" : { "alert" : "This is the alert text", "badge" : 1, "sound" : "default" }

}

这将使消息显示于设备上,触发提升声音并将“1”置于程序图标上。默认按钮“Close”“View”同时会显示于弹出窗口上。

对于 Server Density iPhone程序而言,让用户按下“View”直接进入产生此提示的服务器是很重要的,所以我们增加了额外的自定义值:

$payload['aps'] = array('alert' => 'This is the alert text', 'badge' => 1, 'sound' => 'default');

$payload['server'] = array('serverId' => $serverId, 'name' => $name);

$output = json_encode($payload);

当用户按下“View”后,自定义server值将被传递到设备中的程序。JSON 值如下:

{

     "aps" : { "alert" : "This is the alert text", "badge" : 1, "sound" : "default" },

     "server" : { "serverId" : 1, "name" : "Server name")

}

256字节的限制适用于整个载荷,包括自定义字典集。

  

原生接口

Server Density中,一旦产生了一条提示,将建立一个载荷并插入队列中。因此有必要时我们可以同时发送多个载荷。

Apple推荐使用这种方法,因为如果你在发送各载荷时频繁连接和断开,APNS有可能会封锁你的IP

 

3.Push Notification Provider 是一个应用程序,用于通过 APNs 发送推送通知给 iPhone 应用。

通过 APNs 发送推送通知有几个步骤:
1. 
使用前面创建的 SSL 证书与 APNs 通讯;

2. 构造所要发送的消息载体;

3. 发送载体到APNs

APNs 是一个基于流的 TCP socket,你的 provider  SSL 协议与其通讯。推送通知(包括载体)是以二进制流的方式发送的。和APNs 建立连接后,你可以维持该连接并在连接中断之前发送多个通知。

技巧:应避免每发送一次推送通知就建立、关闭一次连接。频繁的建立、关闭连接可能会被 APNs 认为是 DOS 攻击,从而拒绝发送provider 的推送通知发送请求。


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
提供的源码资源涵盖了Java应用等多个领域,每个领域都包含了丰富的实例和项目。这些源码都是基于各自平台的最新技术和标准编写,确保了在对应环境下能够无缝运行。同时,源码中配备了详细的注释和文档,帮助用户快速理解代码结构和实现逻辑。 适用人群: 适合毕业设计、课程设计作业。这些源码资源特别适合大学生群体。无论你是计算机相关专业的学生,还是对其他领域编程感兴趣的学生,这些资源都能为你提供宝贵的学习和实践机会。通过学习和运行这些源码,你可以掌握各平台开发的基础知识,提升编程能力和项目实战经验。 使用场景及目标: 在学习阶段,你可以利用这些源码资源进行课程实践、课外项目或毕业设计。通过分析和运行源码,你将深入了解各平台开发的技术细节和最佳实践,逐步培养起自己的项目开发和问题解决能力。此外,在求职或创业过程中,具备跨平台开发能力的大学生将更具竞争力。 其他说明: 为了确保源码资源的可运行性和易用性,特别注意了以下几点:首先,每份源码都提供了详细的运行环境和依赖说明,确保用户能够轻松搭建起开发环境;其次,源码中的注释和文档都非常完善,方便用户快速上手和理解代码;最后,我会定期更新这些源码资源,以适应各平台技术的最新发展和市场需求。 所有源码均经过严格测试,可以直接运行,可以放心下载使用。有任何使用问题欢迎随时与博主沟通,第一时间进行解答!

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值