`
修博龙泉
  • 浏览: 318274 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
社区版块
存档分类
最新评论

ios: APNS 配置

ios 
阅读更多
AppDelegate.m
- (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"}}
分享到:
评论

相关推荐

    关于IOS_APNS推送消息(iphone端+服务端)

    总的来说,iOS APNs推送消息涉及到客户端和服务端的协同工作,需要正确配置证书,处理设备Token,以及构建和发送有效的推送消息。通过理解这个过程,开发者可以确保他们的应用能够及时、准确地向用户推送通知。

    Easy APNs Provider -iOS:Mac 推送测试工具.zip

    **Easy APNs Provider - iOS:Mac 推送测试工具** 在iOS应用开发中,Apple Push Notification service (APNs) 是苹果公司提供的一项服务,用于向iOS、watchOS、tvOS和macOS设备发送推送通知。APNs允许开发者通过...

    IOS推送APNS必须的三个包

    综上所述,"IOS推送APNS必须的三个包"可能包括APNS证书、Java APNS库(或类似的库文件“pns”)以及其他必要的配置文件,这些都是在iOS应用中实现推送通知所不可或缺的组件。通过理解和运用这些知识点,开发者可以为...

    apns-cpp:apns-cpp

    **apns-cpp** 是一个基于 C++ 的 Apple Push Notification service (APNs) 客户端库,用于向 iOS 和 macOS 设备发送推送通知。这个项目的目标是提供一个简单、高效且易于集成到 C++ 项目的解决方案。APNs 是苹果公司...

    IOS APNS 官方开发文档

    ### IOS APNS 官方开发文档关键知识点解析 #### 关于本地通知与推送通知 - **本地通知与推送通知概述**:本地通知和推送通知在iOS应用开发中扮演着重要的角色,它们帮助开发者向用户传递信息,提升用户体验。这两...

    iOS苹果推送apns测试工具.zip

    `iOS苹果推送apns测试工具.zip`文件包含的资源显然是为了帮助开发者测试APNs的功能和配置。以下是对APNs和相关测试工具的详细解释。 **苹果推送通知服务(APNs)** 1. **工作原理**:当应用程序注册APNs时,苹果...

    Node.js-使用Nodejs调试iOS的APNS通知推送如此简单

    在iOS应用开发中,Apple Push Notification service (APNS) 是苹果提供的一项服务,用于向运行iOS、iPadOS或watchOS的设备发送远程通知。本文将详细介绍如何使用Node.js来调试iOS的APNS通知推送,让您了解这个过程并...

    Java向苹果服务器推送消息(Java实现HTTP/2协议发送APNS)

    3. **建立HTTP/2连接**:使用Jetty或OkHttp等库创建一个HTTP/2客户端,配置SSLContext,连接到APNs服务器(生产环境为`api.push.apple.com`,开发环境为`api.development.push.apple.com`,端口均为443)。...

    apns-demo:apns,通知服务器,heroku,node.js

    **Apple Push Notification Service (APNs)** 是苹果公司提供的一个服务,允许开发者向运行iOS、iPadOS、watchOS、tvOS或macOS的应用程序发送实时通知。APNs是用户在不打开应用的情况下接收信息的关键机制,如新消息...

    iOS创建EMM_APNS证书流程.docx

    在iOS开发过程中,为了实现设备间的消息推送服务,开发者需要创建EMM_APNS(Enterprise Mobility Management Apple Push Notification service)证书。这个过程涉及到一系列步骤,确保应用程序能够安全地接收来自...

    IOS远程推送php测试--ApnsPHP-master

    APNs是苹果公司提供的一个服务,用于将推送通知发送到iOS设备、Apple Watch、tvOS设备以及macOS设备。当开发者需要提醒用户有新消息、更新或者应用内事件时,就会通过APNs实现。APNs有两种工作模式:Sandbox(沙盒...

    APNs推送Demo,适配iOS8.0+

    综上所述,"APNs推送Demo,适配iOS8.0+"的实现涉及多个环节,包括证书配置、设备注册、通知处理、服务器端推送以及用户体验优化。通过这个Demo,开发者可以深入学习APNs的使用,为自己的应用添加实时通知功能。

    开源项目-sideshow-apns2.zip

    APNs是苹果公司提供的一个服务,允许开发者向iOS、iPadOS、macOS、watchOS和tvOS设备发送远程通知。这个开源项目名为apns2,它为开发人员提供了一个方便、高效的接口来发送和管理这些推送通知。 在APNs2中,主要...

    IOS消息推送之APNS - iOS知识库1

    了解APNS的工作原理以及如何配置和集成,对于开发能提供推送通知的iOS应用至关重要。通过以上步骤,开发者可以实现从服务器到iOS设备的实时消息传递,提升用户体验。同时,注意在实际开发过程中遵循苹果的指南和最佳...

    C# .net 实现APNS

    在IT行业中,苹果推送通知服务(Apple Push Notification Service,简称APNS)是苹果公司提供的一项服务,用于向iOS、iPadOS、watchOS以及macOS设备发送实时的通知。开发者可以使用APNS来实现在应用程序不在前台运行...

    iOS 自带pushnotification 也就是apns

    在提供的文件名中,`PushMeBaby`可能是一个用于测试APNs推送的工具或者示例项目,它可以帮助开发者验证APNs配置的正确性,以及发送和接收通知的能力。`testpush`可能是一个测试用的推送消息,包含了具体的推送内容和...

    C++ IOS后台消息PUSH

    3. OPENSSL配置: OPENSSL是一个开源的库,提供了各种加密算法,如TLS/SSL协议,这对于安全地与APNs服务器通信至关重要。在VS2008中配置OPENSSL,你需要下载并编译OPENSSL源码,然后将其动态库或静态库链接到你的...

    Java_APNS:Java APNS 服务器

    Java APNS,全称为Apple Push Notification service,是苹果公司提供的一项服务,允许应用程序开发者向iOS、iPadOS、watchOS和macOS设备发送实时通知。在Java中实现APNS服务器,可以让我们利用Java强大的编程能力来...

    iphone apns C#

    在iOS平台上,Apple Push Notification Service (APNs) 是苹果公司提供的一个服务,允许应用程序开发者向用户的设备发送远程通知。在本项目中,我们将探讨如何使用C#语言来实现iPhone的APNs推送。C#是一种广泛使用的...

    IOS推送实现(java)

    在iOS应用开发中,为了实现实时向用户发送通知,我们通常会采用Apple Push Notification service (APNs)。本文将详细介绍如何使用Java语言来搭建一个iOS推送服务,涵盖所需依赖、详细代码示例以及开发步骤。 一、...

Global site tag (gtag.js) - Google Analytics