服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - IOS - iOS推送的那些事

iOS推送的那些事

2021-01-07 15:08super_danny IOS

关于iOS推送的那些事,你知道多少?本文带着大家一起了解iOS推送,感兴趣的小伙伴们可以参考一下

直接切入主题,讲讲如何模拟推送以及处理推送消息。在进入主题之前,我先说几个关键流程:
1、建push ssl certification(推送证书)
2、os客户端注册push功能并获得devicetoken
3、用provider向apns发送push消息
4、os客户端接收处理由apns发来的消息
推送流程图:

iOS推送的那些事

provider:就是为指定ios设备应用程序提供push的服务器。如果ios设备的应用程序是客户端的话,那么provider可以理解为服务端(推送消息的发起者)
apns:apple push notification service(苹果消息推送服务器)
devices:ios设备,用来接收apns下发下来的消息
client app:ios设备上的应用程序,用来接收apns下发的消息到指定的一个客户端app(消息的最终响应者)
1、取device token
app 必须要向 apns 请求注册以实现推送功能,在请求成功后,apns 会返回一个设备的标识符即 devicetoken 给 app,服务器在推送通知的时候需要指定推送通知目的设备的 devicetoken。在 ios 8 以及之后,注册推送服务主要分为四个步骤:

  • 使用 registerusernotificationsettings:注册应用程序想要支持的推送类型
  • 通过调用 registerforremotenotifications方法向 apns 注册推送功能
  • 请求成功时,系统会在应用程序委托方法中返回 devicetoken,请求失败时,也会在对应的委托方法中给出请求失败的原因。
  • 将 devicetoken 上传到服务器,服务器在推送时使用。

上述第一个步骤注册的 api 是 ios 8 新增的,因此在 ios 7,前两个步骤需更改为 ios 7 中的 api。
devicetoken 有可能会更改,因此需要在程序每次启动时都去注册并且上传到你的服务器端。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
- (bool)application:(uiapplication *)application
 didfinishlaunchingwithoptions:(nsdictionary *)launchoptions
{
 if ([application respondstoselector:@selector(registerusernotificationsettings:)]) {
  nslog(@"requesting permission for push notifications..."); // ios 8
  uiusernotificationsettings *settings = [uiusernotificationsettings settingsfortypes:
   uiusernotificationtypealert | uiusernotificationtypebadge |
   uiusernotificationtypesound categories:nil];
  [uiapplication.sharedapplication registerusernotificationsettings:settings];
 } else {
  nslog(@"registering device for push notifications..."); // ios 7 and earlier
  [uiapplication.sharedapplication registerforremotenotificationtypes:
   uiremotenotificationtypealert | uiremotenotificationtypebadge |
   uiremotenotificationtypesound];
 }
 return yes;
}
 
- (void)application:(uiapplication *)application
 didregisterusernotificationsettings:(uiusernotificationsettings *)settings
{
 nslog(@"registering device for push notifications..."); // ios 8
 [application registerforremotenotifications];
}
 
- (void)application:(uiapplication *)application
 didregisterforremotenotificationswithdevicetoken:(nsdata *)token
{
 nslog(@"registration successful, bundle identifier: %@, mode: %@, device token: %@",
  [nsbundle.mainbundle bundleidentifier], [self modestring], token);
}
 
- (void)application:(uiapplication *)application
 didfailtoregisterforremotenotificationswitherror:(nserror *)error
{
 nslog(@"failed to register: %@", error);
}
 
- (void)application:(uiapplication *)application handleactionwithidentifier:(nsstring *)identifier
 forremotenotification:(nsdictionary *)notification completionhandler:(void(^)())completionhandler
{
 nslog(@"received push notification: %@, identifier: %@", notification, identifier); // ios 8
 completionhandler();
}
 
- (void)application:(uiapplication *)application
 didreceiveremotenotification:(nsdictionary *)notification
{
 nslog(@"received push notification: %@", notification); // ios 7 and earlier
}
 
- (nsstring *)modestring
{
#if debug
 return @"development (sandbox)";
#else
 return @"production";
#endif
}

2、处理推送消息
1)、程序未启动,用户接收到消息。需要在appdelegate中的didfinishlaunchingwithoptions得到消息内容

?
1
2
3
4
5
6
7
8
- (bool)application:(uiapplication *)application didfinishlaunchingwithoptions:(nsdictionary *)launchoptions {
 //...
 nsdictionary *payload = [launchoptions objectforkey:uiapplicationlaunchoptionsremotenotificationkey];
 if (payload) {
  //...
 }
 //...
}

2)、程序在前台运行,接收到消息不会有消息提示(提示框或横幅)。当程序运行在后台,接收到消息会有消息提示,点击消息后进入程序,appdelegate的didreceiveremotenotification函数会被调用,消息做为此函数的参数传入

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
- (void)application:(uiapplication *)application didreceiveremotenotification:(nsdictionary *)payload {
 nslog(@"remote notification: %@",[payload description]);
 nsstring* alertstr = nil; 
 nsdictionary *apsinfo = [payload objectforkey:@"aps"];
 nsobject *alert = [apsinfo objectforkey:@"alert"];
 if ([alert iskindofclass:[nsstring class]])
 
  alertstr = (nsstring*)alert;
 }
 else if ([alert iskindofclass:[nsdictionary class]])
 
  nsdictionary* alertdict = (nsdictionary*)alert; 
  alertstr = [alertdict objectforkey:@"body"];
 
 application.applicationiconbadgenumber = [[apsinfo objectforkey:@"badge"] integervalue]; 
 if ([application applicationstate] == uiapplicationstateactive && alertstr != nil)
 {
  uialertview* alertview = [[uialertview alloc] initwithtitle:@"pushed message" message:alertstr delegate:nil cancelbuttontitle:@"ok" otherbuttontitles:nil];
  [alertview show];
 }
}

3、义通知提示音
你可以在 app 的 bundle 中加入一段自定义提示音文件。然后当通知到达时可以指定播放这个文件。必须为以下几种数据格式:

  • linear pcm
  • ma4(ima/adpcm)
  • μlaw
  • alaw

你可以将它们打包为aiff、wav或caf文件。自定义的声音文件时间必须小于 30秒,如果超过了这个时间,将被系统声音代替。
4、payload
payload 是通知的一部分,每一条推送通知都包含一个 payload。它包含了系统提醒用户通知到达的方式,还可以添加自定义的数据。即通知主要传递的数据为 payload。
payload 本身为 json 格式的字符串,它内部必须要包含一个键为 aps 的字典。aps 中可以包含以下字段中的一个或多个:
alert:其内容可以为字符串或者字典,如果是字符串,那么将会在通知中显示这条内容
badge:其值为数字,表示当通知到达设备时,应用的角标变为多少。如果没有使用这个字段,那么应用的角标将不会改变。设置为 0 时,会清除应用的角标。
sound:指定通知展现时伴随的提醒音文件名。如果找不到指定的文件或者值为 default,那么默认的系统音将会被使用。如果为空,那么将没有声音。
content-available:此字段为 ios 7 silent remote notification 使用。不使用此功能时无需包含此字段。
如果需要添加自定义的字段,就让服务器的小伙伴们跟aps同一层级添加一个数组(以json为例):

?
1
2
3
4
5
{
  "aps" : {"alert" : "this is the alert text", "badge" : 1, "sound" :"default" },
 
  "server" : {"serverid" : 1, "name" : "server name"}
}

这样收到的 payload 里面会多一个 server 的字段。
5、模拟推送
现在常用的后台server中,一般将推送证书以及推送证书的私钥导出p12交给后台人员即可。
生成php需要的pem证书
6、php有点调皮,还需要转换成pem
准备:
1)、苹果服务器证书端设置正确!打包证书、描述文件正确!!
2)、下载推送证书(cer格式),导入keychain,保证私钥存在,不存在去找创建这个证书的电脑要一份过来。
3)、从钥匙库导出的~~根证书~~(推送证书)私钥(p12格式)
第三步根证书的私钥这里是一个坑!因为一个app的推送证书的创建可以和根证书创建的电脑不同,也就是keychain产生的certsigningrequest不一样,所以私钥也是不一样的,在这里生成pem时,注意要使用推送证书的私钥!
操作过程:
a.把推送证书(.cer)转换为.pem文件,执行命令:
openssl x509 -in 推送证书.cer -inform der -out 推送证书.pem
b.把推送证书导出的私钥(.p12)文件转化为.pem文件:
openssl pkcs12 -nocerts -out 推送证书私钥.pem -in 推送证书私钥.p12 
c.对生成的这两个pem文件再生成一个pem文件,来把证书和私钥整合到一个文件里:
cat 推送证书.pem 推送证书私钥.pem >phppush.pem
然后把这个phppush.pem给后台基友们,就可以下班啦。
当然测试推送也比较麻烦,需要模拟真实的推送环境,一般需要后台提供帮助,但是遇到一些后台同事,他们有强烈地信仰着鄙视链的话,很鄙视ios,心里早就称呼你“死前段”多年了,还那么多事……
所以关于调试推送,这里有两种方式实现自推!不麻烦别人。
模拟推送:通过终端推送

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php
// devicetoken
 $devicetoken = '你的devicetoken';
// 私钥密码,生成pem的时候输入的
$passphrase = '123456';
// 定制推送内容,有一点的格式要求,详情apple文档
$message = array(
 'body'=>'你收到一个新订单'
);
$body['aps'] = array(
 'alert' => $message,
 'sound' => 'default',
 'badge' => 100,
 );
$body['type']=3;
$body['msg_type']=4;
$body['title']='新订单提醒';
$body['msg']='你收到一个新消息';
 
$ctx = stream_context_create();
stream_context_set_option($ctx, 'ssl', 'local_cert', 'push.pem');//记得把生成的push.pem放在和这个php文件同一个目录
stream_context_set_option($ctx, 'ssl', 'passphrase', $passphrase);
$fp = stream_socket_client(
 //这里需要特别注意,一个是开发推送的沙箱环境,一个是发布推送的正式环境,devicetoken是不通用的
 'ssl://gateway.sandbox.push.apple.com:2195', $err,
 //'ssl://gateway.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;
$payload = json_encode($body);
$msg = chr(0) . pack('n', 32) . pack('h*', $devicetoken) . pack('n', strlen($payload)) . $payload;
$result = fwrite($fp, $msg, strlen($msg));
if (!$result)
 echo 'message not delivered' . php_eol;
else
 echo 'message successfully delivered' . php_eol;
fclose($fp);
?>

将上面的代码复制,保存成push.php
然后根据上面生成php需要的pem证书的步骤生成push.pem
两个文件放在同一目录
执行下面的命令

?
1
superdanny@superdannydemacbook-pro$ php push.php

结果为

?
1
2
connected to apns
message successfully delivered

以上就是关于ios推送的那些事,希望对大家的学习有所帮助。

延伸 · 阅读

精彩推荐
  • IOSIOS开发之字典转字符串的实例详解

    IOS开发之字典转字符串的实例详解

    这篇文章主要介绍了IOS开发之字典转字符串的实例详解的相关资料,希望通过本文能帮助到大家,让大家掌握这样的方法,需要的朋友可以参考下...

    苦练内功5832021-04-01
  • IOSIOS 屏幕适配方案实现缩放window的示例代码

    IOS 屏幕适配方案实现缩放window的示例代码

    这篇文章主要介绍了IOS 屏幕适配方案实现缩放window的示例代码,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要...

    xiari5772021-06-01
  • IOSiOS中tableview 两级cell的展开与收回的示例代码

    iOS中tableview 两级cell的展开与收回的示例代码

    本篇文章主要介绍了iOS中tableview 两级cell的展开与收回的示例代码,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧...

    J_Kang3862021-04-22
  • IOSiOS通过逆向理解Block的内存模型

    iOS通过逆向理解Block的内存模型

    自从对 iOS 的逆向初窥门径后,我也经常通过它来分析一些比较大的应用,参考一下这些应用中某些功能的实现。这个探索的过程乐趣多多,不仅能满足自...

    Swiftyper12832021-03-03
  • IOSiOS布局渲染之UIView方法的调用时机详解

    iOS布局渲染之UIView方法的调用时机详解

    在你刚开始开发 iOS 应用时,最难避免或者是调试的就是和布局相关的问题,下面这篇文章主要给大家介绍了关于iOS布局渲染之UIView方法调用时机的相关资料...

    windtersharp7642021-05-04
  • IOSiOS 雷达效果实例详解

    iOS 雷达效果实例详解

    这篇文章主要介绍了iOS 雷达效果实例详解的相关资料,需要的朋友可以参考下...

    SimpleWorld11022021-01-28
  • IOS解析iOS开发中的FirstResponder第一响应对象

    解析iOS开发中的FirstResponder第一响应对象

    这篇文章主要介绍了解析iOS开发中的FirstResponder第一响应对象,包括View的FirstResponder的释放问题,需要的朋友可以参考下...

    一片枫叶4662020-12-25
  • IOS关于iOS自适应cell行高的那些事儿

    关于iOS自适应cell行高的那些事儿

    这篇文章主要给大家介绍了关于iOS自适应cell行高的那些事儿,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的...

    daisy6092021-05-17