转自:http://blog.csdn.net/shenjie12345678/article/details/41120637

第一部分

首先第一步当然是介绍一下苹果的推送机制(APNS)咯(ps:其实每一篇教程都有),先来看一张苹果官方对其推送做出解释的概要图。

Provider是给你手机应用发出推送消息的服务器,而APNS(Apple Push Notification Service)则是苹果消息推送服务器。你本地的服务器当需要给应用推送一条消息的时候,先要将消息发出到苹果推送服务器,然后再由苹果推送服务器将消息发到安装了该应用的手机。

接下来再看一张解释图:

根据上图的逻辑我来给大家解释一下:

1.你的IOS应用需要去注册APNS消息推送功能。

2.当苹果APNS推送服收到来自你应用的注册消息就会返回一串device token给你(很重要)

3.将应用收到的device Token传给你本地的Push服务器。

4.当你需要为应用推送消息的时候,你本地的推送服务器会将消息,以及Device Token打包发送到苹果的APNS服

5.APNS再将消息推送给目的iphone

第二部分

1.从证书颁发机构颁发证书

打开你mac的钥匙串访问: 然后点击钥匙串访问

随后它会弹出一个窗口 用户电子邮件信息

就填写你苹果开发者账号的名称即可(应该是一个邮件名称),点击保存到磁盘的选项,点击继续,显示如下

点击存储,文件名为:CertificateSigningRequest.certSigningRequest 随后将他放在一个文件夹中我们取名push吧!

第三部分

访问苹果开发者网址:https://developer.apple.com/

选中MemberCenter选项,进入登陆页面,用你的苹果开发者账号登陆,过一会网页就会自动跳转到下图。

点击红色所选部分

内容进行下一步的操作。

选择Certificates选项,设置证书,如图所示先解释一下

Development选项的作用顾名思义就是用来作为开发使用的证书,Production选项则

是用来发布产品使用的,名称很陌生是不是,之前的开发者网页是没有这一选项的,可能是苹果把他修改了,用这个名称更加能让人

理解吧(字面上解释就是产品么)。两个选项生成证书的步骤是一样的,现在我们使用开发者的选项进行证书的制作,步骤如下:

选择Development选项

点击上面的加号选项,

选择APNS选项(开发么当然是在沙盒环境下了,模拟真实情况),然后Continue

这个AppID我们在下一部分讲如何生成,现在我用的是已经生成好的一个应用ID,继续Continue

这边就要选择在钥匙串访问环节下载下来的CertificateSigningRequest.certSigningRequest文件了,选择并生成

点击下载,得到aps_development .cer,保存到push文件中去。

第四部分

新建一个AppID,选择网页上的AppIDs,然后点击右上角的 “加号”

App的取名只要按照苹果要求的就可以了

然后BundleID是比较重要的,在提交审核以及测试(苹果的TestFlight)和付费环节都需要用到,也只需按照苹果要求来写就好了。

接下来就是对你的应用需要使用苹果的哪些服务进行选择就行了,例如广告,游戏中心,推送,付费等等情况。

最后选择“Submit”选项,在下一个界面中选择“done”选项,这样我们设置AppID的步骤我们就完成了。

第五部分:生成Provisioning Profiles

这个配置概要文件分为两种,一种是为开发使用的,还有一种则是为发布到appStore上面。

创建发布版的ProvisioningProfile与开发版的流程相同,点击Development然后点击右上角的加号

会进入选择何种配置概要文件的界面

我们现在时测试,所以选择“IOS App Development”的选项,在下面的Distribution发布选项中有两个选择,“App Store”以及“Ad hoc”,你可以根据下面的描述

选择你发布所需的选项。点击Continue进入下一步。

选择你上一步创建的AppID,点击Continue 进行下一步

选择你的开发者账号,Continue进行下一步

在这一步上选择你的设备(你只有在这一步上勾选了你的设备,你才能在设备上用这个签名进行调试)。关于如何将你的设备号添加进去也是非常

简单的,选择左侧的"Devices",然后点击右上角的加号,在随后出来的页面上添加你设备的UUID(在XCode中可以查看到)以及name( 可以随便取,自己看的懂就行)

然后Register一下,照着流程走到最后一步就完成了。

好咋们继续回到上面的Provisioning Profile配置环节,当你选好了你的设备后点击“Continue”进入下一页,

输入一个文件名(最好是起的能看懂是干嘛的,当然也可以随便起),点击“Generate”进入下一个页面,在这个页面中就会有一个下载按钮让你下载这个文件,

我们把它下载下来放在Push文件夹中。

第六部分

好了,前期的准备工作都已经做完了,现在让我们开始推送吧!(吼吼)

首先双击我们生成的 “aps_development .cer” 文件,进入钥匙串访问,找到我们的专用秘钥(根据在第二部分中从证书机构颁发证书操作中填写的常用名)

我在第二部分填写的是“silicon”,由于换了一台mac之前安装的没有了,之前没有截图,所以随便找了个图给大家看一下,凭大家的聪明才智应该不难理解吧。

然后右击导出,会弹出如下所示的图。

将他存储到push文件夹中,命名为“push.p12”,在这一步中导出会让你输入密码并验证,你可以自定义一个密码,例如abc123

openssl pkcs12 -nocerts -out PushChatKey.pem -in Push.p12

现在push文件夹中应该有几个文件“aps_development .cer” ,"push.p12",“CertificateSigningRequest.certSigningRequest”以及刚才下下来的配置概要文件。

接下来我们打开终端将他们生成.pem文件

1.把aps_development .cer文件生成.pcm文件,cd到push文件夹下

openssl x509 -in aps_development\.cer -inform der -out PushChatCert.pem

2.把push.p12文件生成为.pem文件

openssl pkcs12 -nocerts -out PushChatKey.pem -in Push.p12

上边输入的密码则是你导出证书所设的密码,即abc123.接着还会让你输入.pem文件的密码,还是使用abc123好了,防止混淆。

这样我们在push文件夹中就又得到了两个文件,PushChatCert.pem和PushChatKey.pem。

3.把PushChatCert.pem和PushChatKey.pem合并为一个pem文件,

cat PushChatCert.pem PushChatKey > ck.pem

在push文件夹中又多了一个ck.pem文件,以上我们把需要使用的文件都准备好了

接下来就要测试一下啦,是不是很激动~

为了测试证书工作的状况,我们可以使用“telnet gateway.sandbox.push.apple.com 2195”来检测一下,如果显示

则表示成功了。

然后,我们使用我们生成的证书和私钥来设置一个安全的链接去链接苹果服务器

在终端输入如下命令:openssl s_client -connect gateway.sandbox.push.apple.com:2195 -cert PushChatCert.pem
-key PushChatKey.pem

需要输入密码(abc123 我们刚才所设置的)。

然后他会返回一系列的数据,这里我就粘贴一部分啦:

CONNECTED(00000003)

depth=1 /C=US/O=Entrust, Inc./OU=www.entrust.net/rpa is incorporated by reference/OU=(c) 2009 Entrust, Inc./CN=Entrust Certification Authority - L1C

verify error:num=20:unable to get local issuer certificate

verify return:0

---

Certificate chain

。。。。。(省略)

。。。。。(省略)

。。。。。(省略)

Start Time: 1416389389

Timeout   : 300 (sec)

Verify return code: 0 (ok)

---

测试就到这里啦。。。

第七部分

1.建立推送项目

  1. //
  2. //  AppDelegate.m
  3. //  TestPushNotifiy
  4. //
  5. //  Created by silicon on 14-10-30.
  6. //  Copyright (c) 2014年 silicon. All rights reserved.
  7. //
  8. #import "AppDelegate.h"
  9. @implementation AppDelegate
  10. @synthesize mainView = _mainView;
  11. - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
  12. {
  13. if ([application respondsToSelector:@selector(isRegisteredForRemoteNotifications)])
  14. {
  15. //IOS8
  16. //创建UIUserNotificationSettings,并设置消息的显示类类型
  17. UIUserNotificationSettings *notiSettings = [UIUserNotificationSettings settingsForTypes:(UIUserNotificationTypeBadge | UIUserNotificationTypeAlert | UIRemoteNotificationTypeSound) categories:nil];
  18. [application registerUserNotificationSettings:notiSettings];
  19. } else{ // ios7
  20. [application registerForRemoteNotificationTypes:(UIRemoteNotificationTypeBadge                                       |UIRemoteNotificationTypeSound                                      |UIRemoteNotificationTypeAlert)];
  21. }
  22. self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
  23. // Override point for customization after application launch.
  24. self.window.backgroundColor = [UIColor whiteColor];
  25. [self.window makeKeyAndVisible];
  26. self.mainView = [[MainViewController alloc] initWithNibName:@"MainViewController" bundle:nil];
  27. self.window.rootViewController = self.mainView;
  28. return YES;
  29. }
  30. - (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)pToken{
  31. NSLog(@"---Token--%@", pToken);
  32. }
  33. - (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo{
  34. NSLog(@"userInfo == %@",userInfo);
  35. NSString *message = [[userInfo objectForKey:@"aps"]objectForKey:@"alert"];
  36. UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"提示" message:message delegate:self cancelButtonTitle:@"取消" otherButtonTitles:@"确定", nil nil];
  37. [alert show];
  38. }
  39. - (void)application:(UIApplication *)application didFailToRegisterForRemoteNotificationsWithError:(NSError *)error{
  40. NSLog(@"Regist fail%@",error);
  41. }
  42. - (void)applicationWillResignActive:(UIApplication *)application
  43. {
  44. // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
  45. // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
  46. }
  47. - (void)applicationDidEnterBackground:(UIApplication *)application
  48. {
  49. // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
  50. // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
  51. }
  52. - (void)applicationWillEnterForeground:(UIApplication *)application
  53. {
  54. // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.
  55. }
  56. - (void)applicationDidBecomeActive:(UIApplication *)application
  57. {
  58. // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
  59. }
  60. - (void)applicationWillTerminate:(UIApplication *)application
  61. {
  62. // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
  63. }
  64. @end

在appdelegate.m中加入以上代码,

  1. if ([application respondsToSelector:@selector(isRegisteredForRemoteNotifications)])
  2. {
  3. //IOS8
  4. //创建UIUserNotificationSettings,并设置消息的显示类类型
  5. UIUserNotificationSettings *notiSettings = [UIUserNotificationSettings settingsForTypes:(UIUserNotificationTypeBadge | UIUserNotificationTypeAlert | UIRemoteNotificationTypeSound) categories:nil];
  6. [application registerUserNotificationSettings:notiSettings];
  7. } else{ // ios7
  8. [application registerForRemoteNotificationTypes:(UIRemoteNotificationTypeBadge                                       |UIRemoteNotificationTypeSound                                      |UIRemoteNotificationTypeAlert)];
  9. }

由于ios8的推送跟ios7及以下的不一样,所以需要加判断来注册消息推送。

函数:

  1. - (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)pToken{
  2. NSLog(@"---Token--%@", pToken);
  3. }

会接收来自苹果服务器给你返回的deviceToken,然后你需要将它添加到你本地的推送服务器上。(很重要,决定你的设备能不能接收到推送消息)。

  1. - (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo{
  2. NSLog(@"userInfo == %@",userInfo);
  3. NSString *message = [[userInfo objectForKey:@"aps"]objectForKey:@"alert"];
  4. UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"提示" message:message delegate:self cancelButtonTitle:@"取消" otherButtonTitles:@"确定", nil nil];
  5. [alert show];
  6. }

这个函数则是当设备接收到来自苹果推送服务器的消息时触发的,用来显示推送消息。

  1. - (void)application:(UIApplication *)application didFailToRegisterForRemoteNotificationsWithError:(NSError *)error{
  2. NSLog(@"Regist fail%@",error);
  3. }

当注册失败时,触发此函数。

2.PHP服务端

将simplepush.php这个推送脚本也放在push文件夹中

  1. <?php
  2. // ??????????deviceToken???????????????
  3. $deviceToken = 'c95f661371b085e2517b4c12cc76293522775e5fd9bb1dea17dd80fe85583b41';
  4. // Put your private key's passphrase here:
  5. $passphrase = 'abc123';
  6. // Put your alert message here:
  7. $message = 'My first push test!';
  8. ////////////////////////////////////////////////////////////////////////////////
  9. $ctx = stream_context_create();
  10. stream_context_set_option($ctx, 'ssl', 'local_cert', 'ck.pem');
  11. stream_context_set_option($ctx, 'ssl', 'passphrase', $passphrase);
  12. // Open a connection to the APNS server
  13. //??????????
  14. //$fp = stream_socket_client(?ssl://gateway.push.apple.com:2195?, $err, $errstr, 60, //STREAM_CLIENT_CONNECT, $ctx);
  15. //?????????????appstore??????
  16. $fp = stream_socket_client(
  17. 'ssl://gateway.sandbox.push.apple.com:2195', $err,
  18. $errstr, 60, STREAM_CLIENT_CONNECT|STREAM_CLIENT_PERSISTENT, $ctx);
  19. if (!$fp)
  20. exit("Failed to connect: $err $errstr" . PHP_EOL);
  21. echo 'Connected to APNS' . PHP_EOL;
  22. // Create the payload body
  23. $body['aps'] = array(
  24. 'alert' => $message,
  25. 'sound' => 'default'
  26. );
  27. // Encode the payload as JSON
  28. $payload = json_encode($body);
  29. // Build the binary notification
  30. $msg = chr(0) . pack('n', 32) . pack('H*', $deviceToken) . pack('n', strlen($payload)) . $payload;
  31. // Send it to the server
  32. $result = fwrite($fp, $msg, strlen($msg));
  33. if (!$result)
  34. echo 'Message not delivered' . PHP_EOL;
  35. else
  36. echo 'Message successfully delivered' . PHP_EOL;
  37. // Close the connection to the server
  38. fclose($fp);
  39. ?>

deviceToken填写你接收到的token,passPhrase则填写你的ck.pem设置的密码。

此刻就是见证奇迹的时候了

使用终端进入到push文件夹,在终端输入 php simplepush.php

若显示以上提示则表示推送成功了。

附上一张成功图。

推送就到这边吧!

感谢这篇博客的指导:http://blog.csdn.net/showhilllee/article/details/8631734

IOS开发之实现App消息推送的更多相关文章

  1. IOS开发之实现App消息推送(最新)

    好久没有写过博客啦,今天就由本菜鸟给大家做一个简单的IOSApp消息推送教程吧!一切从0开始,包括XCode6, IOS8, 以及苹果开发者中心最新如何注册应用,申请证书以及下载配置概要文件,相信很多 ...

  2. IOS8开发之实现App消息推送

    第一部分 Apple Push Notification Service 首先第一步当然是介绍一下苹果的推送机制(APNS)咯(ps:其实每一篇教程都有),先来看一张苹果官方对其推送做出解释的概要图. ...

  3. 淘宝APP消息推送模型

    为什么到了2020年,"统一推送联盟"依旧无法起显著作用? - 知乎 https://www.zhihu.com/question/370632447 https://mp.wei ...

  4. 浅谈APP消息推送

    作为移动端APP产品运营最重要的运营手段,消息推送(push)被越来越多的APP厂商所重视,在信息泛滥的移动互联网时代,手机APP应用安装得越来越多,小小的手机屏幕每天收到的消息推送也越来越多,站在用 ...

  5. APP消息推送是否进入消息中心和click、receive事件分析

    前端时间研究APP消息推送的机制,由于机型.版本的碎片化,消息推送的机制不太好理解,所以总结下,放在博文里以备后续查阅. 安卓Android系统的消息推送:     安卓 推送方式 应用状态 类型 消 ...

  6. ios手机app消息推送

    h5+app项目,推送平台 " 个推 " 首先在manifest.json配置文件中点击模块权限配置,勾选push消息推送配置如图1-1 第二部在manifest.json配置文件 ...

  7. python 全栈开发,Day103(微信消息推送,结算中心业务流程)

    昨日内容回顾 第一部分:考试题(Python基础) 第二部分:路飞相关 1. 是否遇到bug?难解决的技术点?印象深刻的事? - orm操作费劲 - 最开始学习路由系统时候,匹配规则: 答案一: 有, ...

  8. APP消息推送机制的实现(PUSH)

    出于好奇,想了解一下消息推送机制,在网上搜索到了几篇文章,感觉还不错,粘贴下来,等真正用到的时候再仔细研究 以下两篇是关于ios的 1.http://blog.csdn.net/xyxjn/artic ...

  9. APP消息推送功能

    1.APP内部最好设计-我的消息-的功能,以便用户查看推送消息历史记录,通过角标.已读.未读等设计吸引用户读取消息.(画下来这都是重点) 2.建议提供推送设置功能,允许用户设置推送消息是否显示于通知栏 ...

随机推荐

  1. HDU 1232 并查集/dfs

    原题: http://acm.hdu.edu.cn/showproblem.php?pid=1232 我的第一道并查集题目,刚刚学会,我是照着<啊哈算法>这本书学会的,感觉非常通俗易懂,另 ...

  2. Java 7 Concurrency Cookbook 翻译 第一章 线程管理之四

    七.创建和运行一个后台线程 Java中有一种特别的线程叫做 deamon(后台) 线程.这类线程具有非常低的权限,并且只有在同一个程序中没有其他的正常线程在运行时才会运行.注意:当一个程序中只剩下后台 ...

  3. 第四章第四个例题(LRJ)

    半年了,最起码的编程能力也谈不上啊,思维神马就更不不敢说了. 互联网时代讲求效率,走得慢和不走没有区别了. The war is on. (buhuidetiduokanduodajibianyehu ...

  4. Android学习笔记(三)——初探Intent

    //此系列博文是<第一行Android代码>的学习笔记,如有错漏,欢迎指正! Intent 是 Android 程序中各组件之间进行交互的一种重要方式,它不仅可以指明当前组件想要执行的动作 ...

  5. [HDU3555]Bomb

    [HDU3555]Bomb 试题描述 The counter-terrorists found a time bomb in the dust. But this time the terrorist ...

  6. opencv统计二值图黑白像素个数

    #include "iostream" #include "queue" #include "Windows.h" #include < ...

  7. Hashtable和HashMap类的区别

    Hashtable和HashMap类有三个重要的不同之处.第一个不同主要是历史原因.Hashtable是基于陈旧的Dictionary类的,HashMap是Java 1.2引进的Map接口的一个实现. ...

  8. 51Nod 1378 夹克老爷的愤怒

    Description 一棵树,可以进行染色,被染色的点可以控制与它距离不超过 \(k\) 的所有点,问控制整棵树最少需要染几个点. Sol 贪心. 记录一下最深的未染色点和最浅的染色点,判断一下能否 ...

  9. 微型Http服务器Tiny Http Server

    Tiny Http Server 一个简单的跨平台Http服务器.服务器部分使用了Mongoose的代码,界面是使用QT开发的. 开发为了在临时需要使用一个http服务器来做发布代码文档的时候,不用去 ...

  10. 在sublime-text中设置浏览器预览

    配置在Chrome,Firefox中打开 安装 SideBarEnhancements 然后通过ctrl + k, ctrl + b打开侧边栏,在侧边栏的文件中右击,找到 open width -&g ...