- 浏览: 318274 次
- 性别:
- 来自: 杭州
最新评论
-
atgoingguoat:
R.drawable.icon是LOG图
android九宫格实现 -
atgoingguoat:
android:src="@drawable/ico ...
android九宫格实现 -
修博龙泉:
旋转view:
CGAffineTransform at ...
动画-图片旋转 -
修博龙泉:
阻尼效果图片:
CALayer *layer = self.i ...
动画-图片旋转 -
bei-jin-520:
color]sdfsdfsdf
android九宫格实现
AppDelegate.m
1: 创建AppId,设置develop ssl configure
2: 上传request文件,下载配置好的cer文件,双击安装
3: 创建provisioning profile,下载.mobileprovision
4:配置xcode:info-》budle identifier->com.xxxx.xxxx
5: 修改code signing
可以运行。调试文件:
meBaby,引入cer文件。更改.m的deviceToken
php 服务器配置:
二、生成PHP端推送消息到Apple服务器时需要的证书文件
1.选定推送服务证书(Apple Development Push Services*),导出到桌面,保存为Certificates.p12。
2.在终端中运行如下命令:
[xhtml] view plaincopy
openssl pkcs12 -clcerts -nokeys -out cert.pem -in Certificates.p12
openssl pkcs12 -nocerts -out key.pem -in Certificates.p12
openssl rsa -in key.pem -out key.unencrypted.pem
cat cert.pem key.unencrypted.pem > ck.pem
ck.pem文件则是PHP推送消息时所使用的证书文件。
3:服务器端代码:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { self.window = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease]; // Override point for customization after application launch. if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone) { self.viewController = [[[ViewController alloc] initWithNibName:@"ViewController_iPhone" bundle:nil] autorelease]; } else { self.viewController = [[[ViewController alloc] initWithNibName:@"ViewController_iPad" bundle:nil] autorelease]; } self.window.rootViewController = self.viewController; [self.window makeKeyAndVisible]; NSLog(@"Registerng For push notifications"); [[UIApplication sharedApplication] registerForRemoteNotificationTypes:(UIRemoteNotificationTypeAlert | UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeSound)]; return YES; } - (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken { NSLog(@"deviceToken: %@", deviceToken); } - (void)application:(UIApplication *)application didFailToRegisterForRemoteNotificationsWithError:(NSError *)error { NSLog(@"Error in registration. Error: %@", error); } - (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo { NSLog(@" 收到推送消息 : %@",[[userInfo objectForKey:@"aps"] objectForKey:@"alert"]); if ([[userInfo objectForKey:@"aps"] objectForKey:@"alert"]!=NULL) { UIAlertView* alert = [[UIAlertView alloc] initWithTitle:@"推送通知" message:[[userInfo objectForKey:@"aps"] objectForKey:@"alert"] delegate:self cancelButtonTitle:@" 关闭" otherButtonTitles:@" 更新状态",nil]; [alert show]; [alert release]; } }
1: 创建AppId,设置develop ssl configure
2: 上传request文件,下载配置好的cer文件,双击安装
3: 创建provisioning profile,下载.mobileprovision
4:配置xcode:info-》budle identifier->com.xxxx.xxxx
5: 修改code signing
可以运行。调试文件:
meBaby,引入cer文件。更改.m的deviceToken
php 服务器配置:
二、生成PHP端推送消息到Apple服务器时需要的证书文件
1.选定推送服务证书(Apple Development Push Services*),导出到桌面,保存为Certificates.p12。
2.在终端中运行如下命令:
[xhtml] view plaincopy
openssl pkcs12 -clcerts -nokeys -out cert.pem -in Certificates.p12
openssl pkcs12 -nocerts -out key.pem -in Certificates.p12
openssl rsa -in key.pem -out key.unencrypted.pem
cat cert.pem key.unencrypted.pem > ck.pem
ck.pem文件则是PHP推送消息时所使用的证书文件。
3:服务器端代码:
<?php $deviceToken = '6974ac11 870e09fa 00e2238e 8cfafc7d 2052e342 182f5b57 fabca445 42b72e1b'; $pass = '123456'; // Passphrase for the private key (ck.pem file) // Get the parameters from http get or from command line $message = $_GET['message'] or $message = $argv[1] or $message = 'A test message from worldcup'; $badge = (int)$_GET['badge'] or $badge = (int)$argv[2]; $sound = $_GET['sound'] or $sound = $argv[3]; // Construct the notification payload $body = array(); $body['aps'] = array('alert' => $message); if ($badge) $body['aps']['badge'] = $badge; if ($sound) $body['aps']['sound'] = $sound; /* End of Configurable Items */ $ctx = stream_context_create(); stream_context_set_option($ctx, 'ssl', 'local_cert', 'ck.pem'); // assume the private key passphase was removed. stream_context_set_option($ctx, 'ssl', 'passphrase', $pass); // connect to apns $fp = stream_socket_client('ssl://gateway.sandbox.push.apple.com:2195', $err, $errstr, 60, STREAM_CLIENT_CONNECT, $ctx); if (!$fp) { print "Failed to connect $err $errstr\n"; return; } else { print "Connection OK\n<br/>"; } // send message $payload = json_encode($body); $msg = chr(0) . pack("n",32) . pack('H*', str_replace(' ', '', $deviceToken)) . pack("n",strlen($payload)) . $payload; print "Sending message :" . $payload . "\n"; fwrite($fp, $msg); fclose($fp); ?> 请 求一次 http://127.0.0.1/apns/apns.php?message=A%20test%20message%20from%20localhost&badge=2&sound=received5.caf就 会向APNS进行一次推送。我的请求结果如下: Connection OK Sending message :{"aps":{"alert":"A test message from localhost","badge":2,"sound":"received5.caf"}}
发表评论
-
CCMenu 与 CCMenuItem
2013-11-09 11:52 870引入#import "ccDeprecate ... -
抛物线的精灵
2013-11-08 15:04 825// 抛物线 //mSprite:需要做抛物线的精灵 ... -
卡马克卷轴算法
2013-11-05 15:35 2129念 这里使用简化的概念,精确的定义请参考计算机图形学中二维观察 ... -
git 大招
2013-11-04 19:54 1582Last login: Mon Nov 4 19:30:1 ... -
AVAudioRecorder MAV格式录音
2013-08-15 21:13 1215//录音设置 NSDictionary * ... -
uilable根据字符串长度变化
2013-08-01 15:18 917CGSize labelSize = [ ... -
ios 文本自动换行
2013-07-30 19:52 1062// //自动换行 // UILabel *l ... -
ios 文本框随着键盘高度变化而变化
2013-07-29 18:22 2273监听键盘高度变化 [[NSNotificationC ... -
IOS开发苹果官方Sample Code及下载地址
2013-07-11 11:17 1619在线浏览地址:https://developer.apple ... -
苹果推送通知服务(APNs)编程(转)
2013-06-07 11:19 1315iPhone 对于应用程序在后台运行有诸多限制(除非你越狱) ... -
cell 数据重复
2013-06-03 15:21 1046static NSString *CellIdentifi ... -
ios NSDate NSTring long 时间戳与字符串转换
2013-05-22 11:09 27021一,转化的方法为 NSString *timeS ... -
关于缺少各种framework出现的错误累结(转)
2013-05-16 16:47 1416博客分类: iosiPhone开发 iosiPhone开发 ... -
动画-图片旋转
2013-05-13 11:28 1466旋转: iv = [[UIImageView alloc] ... -
UINavicationController
2013-05-13 09:41 909如果楼主想要使用UINavigationController中 ... -
NSTimer-动态修改Interval的值
2013-05-06 09:38 931NSTimer使用例子: NSTimer *sh ... -
UIScrollView的属性总结
2013-04-27 10:00 948UIScrollView的属性总结 属性 作用 CGPoint ... -
单例设置
2013-04-27 09:51 837+ (RootScrollView *)shareIn ... -
颜色设置
2013-04-27 09:50 722[Globle colorFromHexRGB:@&quo ... -
翻转动画
2013-04-11 16:11 817CGContextRef context ...
相关推荐
总的来说,iOS APNs推送消息涉及到客户端和服务端的协同工作,需要正确配置证书,处理设备Token,以及构建和发送有效的推送消息。通过理解这个过程,开发者可以确保他们的应用能够及时、准确地向用户推送通知。
**Easy APNs Provider - iOS:Mac 推送测试工具** 在iOS应用开发中,Apple Push Notification service (APNs) 是苹果公司提供的一项服务,用于向iOS、watchOS、tvOS和macOS设备发送推送通知。APNs允许开发者通过...
综上所述,"IOS推送APNS必须的三个包"可能包括APNS证书、Java APNS库(或类似的库文件“pns”)以及其他必要的配置文件,这些都是在iOS应用中实现推送通知所不可或缺的组件。通过理解和运用这些知识点,开发者可以为...
**apns-cpp** 是一个基于 C++ 的 Apple Push Notification service (APNs) 客户端库,用于向 iOS 和 macOS 设备发送推送通知。这个项目的目标是提供一个简单、高效且易于集成到 C++ 项目的解决方案。APNs 是苹果公司...
### IOS APNS 官方开发文档关键知识点解析 #### 关于本地通知与推送通知 - **本地通知与推送通知概述**:本地通知和推送通知在iOS应用开发中扮演着重要的角色,它们帮助开发者向用户传递信息,提升用户体验。这两...
`iOS苹果推送apns测试工具.zip`文件包含的资源显然是为了帮助开发者测试APNs的功能和配置。以下是对APNs和相关测试工具的详细解释。 **苹果推送通知服务(APNs)** 1. **工作原理**:当应用程序注册APNs时,苹果...
在iOS应用开发中,Apple Push Notification service (APNS) 是苹果提供的一项服务,用于向运行iOS、iPadOS或watchOS的设备发送远程通知。本文将详细介绍如何使用Node.js来调试iOS的APNS通知推送,让您了解这个过程并...
3. **建立HTTP/2连接**:使用Jetty或OkHttp等库创建一个HTTP/2客户端,配置SSLContext,连接到APNs服务器(生产环境为`api.push.apple.com`,开发环境为`api.development.push.apple.com`,端口均为443)。...
**Apple Push Notification Service (APNs)** 是苹果公司提供的一个服务,允许开发者向运行iOS、iPadOS、watchOS、tvOS或macOS的应用程序发送实时通知。APNs是用户在不打开应用的情况下接收信息的关键机制,如新消息...
在iOS开发过程中,为了实现设备间的消息推送服务,开发者需要创建EMM_APNS(Enterprise Mobility Management Apple Push Notification service)证书。这个过程涉及到一系列步骤,确保应用程序能够安全地接收来自...
APNs是苹果公司提供的一个服务,用于将推送通知发送到iOS设备、Apple Watch、tvOS设备以及macOS设备。当开发者需要提醒用户有新消息、更新或者应用内事件时,就会通过APNs实现。APNs有两种工作模式:Sandbox(沙盒...
综上所述,"APNs推送Demo,适配iOS8.0+"的实现涉及多个环节,包括证书配置、设备注册、通知处理、服务器端推送以及用户体验优化。通过这个Demo,开发者可以深入学习APNs的使用,为自己的应用添加实时通知功能。
APNs是苹果公司提供的一个服务,允许开发者向iOS、iPadOS、macOS、watchOS和tvOS设备发送远程通知。这个开源项目名为apns2,它为开发人员提供了一个方便、高效的接口来发送和管理这些推送通知。 在APNs2中,主要...
了解APNS的工作原理以及如何配置和集成,对于开发能提供推送通知的iOS应用至关重要。通过以上步骤,开发者可以实现从服务器到iOS设备的实时消息传递,提升用户体验。同时,注意在实际开发过程中遵循苹果的指南和最佳...
在IT行业中,苹果推送通知服务(Apple Push Notification Service,简称APNS)是苹果公司提供的一项服务,用于向iOS、iPadOS、watchOS以及macOS设备发送实时的通知。开发者可以使用APNS来实现在应用程序不在前台运行...
在提供的文件名中,`PushMeBaby`可能是一个用于测试APNs推送的工具或者示例项目,它可以帮助开发者验证APNs配置的正确性,以及发送和接收通知的能力。`testpush`可能是一个测试用的推送消息,包含了具体的推送内容和...
3. OPENSSL配置: OPENSSL是一个开源的库,提供了各种加密算法,如TLS/SSL协议,这对于安全地与APNs服务器通信至关重要。在VS2008中配置OPENSSL,你需要下载并编译OPENSSL源码,然后将其动态库或静态库链接到你的...
Java APNS,全称为Apple Push Notification service,是苹果公司提供的一项服务,允许应用程序开发者向iOS、iPadOS、watchOS和macOS设备发送实时通知。在Java中实现APNS服务器,可以让我们利用Java强大的编程能力来...
在iOS平台上,Apple Push Notification Service (APNs) 是苹果公司提供的一个服务,允许应用程序开发者向用户的设备发送远程通知。在本项目中,我们将探讨如何使用C#语言来实现iPhone的APNs推送。C#是一种广泛使用的...
在iOS应用开发中,为了实现实时向用户发送通知,我们通常会采用Apple Push Notification service (APNs)。本文将详细介绍如何使用Java语言来搭建一个iOS推送服务,涵盖所需依赖、详细代码示例以及开发步骤。 一、...