iPhone Push消息全攻略.1

来源:互联网 发布:北京工商网络申请平台 编辑:程序博客网 时间:2024/05/16 22:28

要做一个iPhone Push消息的需求,从简单test的开始。

1、先添加一个app ID


2、点击Edit来配置push服务。

3、生成两个证书,一个用于开发,一个用于发布。

4、按下图操作创建一个csr文件然后continue。

4.1 打开应用程序->实用工具->钥匙串访问。按如下菜单请求一个证书。

4.2 如下图


5、选择刚才创建好的csr文件生成证书

6、下载后双击cer文件导入系统。接着创建Provisioning Profile。

选择我们刚创建的app id。
一步步continue,最后generate。

7、Download之后导入profile到Xcode。
8、将SSL证书和key安装到推送服务器上。先找到我的证书,如下:

8.1 选中两项,右键“导出两项”


8.2 会提示生成一个文件密码,密码可以为空,不输入直接点好。

tips:
也可以通过如下方式生成profile,在Organizer里new一个Profile。


然后到member center里下载profile,导入到真实iphone设备。据这篇文章说只能保留一个。


9、开始开发前,先了解下DeviceToken

device token,即设备令牌,不是系统唯一标识(见获取iOS设备的基本信息),需要在应用启动时发起到apple服务器请求,注册自己的设备和应用,并获得这个device token。

device token有什么用?如果应用需要push notification给手机,那么它要有个服务器端(provider),但是它发出的信息不是直接给手机的,而是必须统一交给apple的服务器,这个服务器就是apple push notification server(apns)。apple服务器通过这个token,知道应用要发的消息是给哪个手机设备的,并转发该消息给手机,手机再通知应用程序。

10、创建一个Single View Application应用来获取DeviceToken
修改Delegate文件,要在头文件里定义变量:@property (strong, nonatomic) UIViewController *viewController;
//
//  com_sencloud_testAppDelegate.m
//  test
//
//  Created by chen minglei on 13-7-11.
//  Copyright (c) 2013 chen minglei. All rights reserved.
//

#import "com_sencloud_testAppDelegate.h"

@implementation com_sencloud_testAppDelegate

@synthesize window;
@synthesize viewController;

- (
void)applicationDidFinishLaunching:(UIApplication *)application {
    [
windowaddSubview:viewController.view];
    [windowmakeKeyAndVisible];
   
    NSLog(@"Registering for push notifications...");
    [[UIApplicationsharedApplication]
     registerForRemoteNotificationTypes:
     (UIRemoteNotificationTypeAlert |
      UIRemoteNotificationTypeBadge |
      UIRemoteNotificationTypeSound)];
   
}

- (void)application:(UIApplication *)app didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken {
   
    NSString *str = [NSString
                     stringWithFormat:@"Device Token=%@",deviceToken];
    NSLog(str);
   
}

- (void)application:(UIApplication *)app didFailToRegisterForRemoteNotificationsWithError:(NSError *)err {
   
    NSString *str = [NSStringstringWithFormat@"Error: %@", err];
    NSLog(str);
   
}

- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo {
   
    for (id key in userInfo) {
        NSLog(@"key: %@, value: %@", key, [userInfo objectForKey:key]);
    }
   
}

@end

tips:
遇到这个问题:
Error in registration. Error: Error Domain=NSCocoaErrorDomain Code=3000 "未找到应用程序的“aps-environment”的权利字符串" UserInfo=0x123290 {NSLocalizedDescription=未找到应用程序的“aps-environment”的权利字符串}
原因是Code Signing Identity不对,而这个不对的原因是profile doesn't match bundle identifier,

必须在创建工程的时候设置正确,才能正常运行。如下图:

11、运行后debug view窗口得到:
2013-07-11 21:18:36.139 test[6386:907] Registering for push notifications...
2013-07-11 21:19:05.988 test[6386:907] Device Token=<c8cd88d5 9c0d7407 fc697357 3d3778e5 5e83b92e d40c7588 a595be18 119c6f92>

12、写provider端代码。
import javapns.back.PushNotificationManager;import javapns.back.SSLConnectionHelper;import javapns.data.Device;import javapns.data.PayLoad;public class ApnsAct {public static void main(String[] args) throws Exception {try {String deviceToken = "c8cd88d59c0d7407fc6973573d3778e55e83b92ed40c7588a595be18119c6f92";PayLoad payLoad = new PayLoad();payLoad.addAlert("Test");payLoad.addBadge(4);payLoad.addSound("default");PushNotificationManager pushManager = PushNotificationManager.getInstance();pushManager.addDevice("iPhone", deviceToken);// Connect to APNsString host = "gateway.sandbox.push.apple.com";int port = 2195;String certificatePath = "/Users/plan9x/Desktop/test.p12";String certificatePassword = "test";pushManager.initializeConnection(host, port, certificatePath,certificatePassword,SSLConnectionHelper.KEYSTORE_TYPE_PKCS12);// Send PushDevice client = pushManager.getDevice("iPhone");pushManager.sendNotification(client, payLoad);pushManager.stopConnection();pushManager.removeDevice("iPhone");} catch (Exception e) {e.printStackTrace();}}}


tips:
调试过程报了错如下,网上查是空密码导致,加上密码test重新生成p12文件:
java.io.IOException: failed to decrypt safe contents entry: java.lang.ArithmeticException: / by zero
at com.sun.net.ssl.internal.pkcs12.PKCS12KeyStore.engineLoad(PKCS12KeyStore.java:1277)
at java.security.KeyStore.load(KeyStore.java:1183)
at javapns.back.SSLConnectionHelper.<init>(Unknown Source)
at javapns.back.PushNotificationManager.initializeConnection(Unknown Source)
at com.moco.cms.action.front.ApnsAct.main(ApnsAct.java:27)
pfonseka opened this issue 2 years ago

Problem with empty or null password in 'APNS.newService().withCert(certificate.p12, password)'

No milestone
No one is assigned

When a password was not defined on keyStore generation I have the following situations:

1 - Using a null password in APNS.newService().withCert(certificate.p12, password) returns a "NullPointerException";

2 - Using an empty password in APNS.newService().withCert(certificate.p12, password) returns "java.io.IOException: failed to decrypt safe contents entry: java.lang.ArithmeticException: / by zero"

 notnoop commented2 years ago

This is a known Java library bug with p12 certificates with no passwords, reported as bug 6415637, and affects any Java library basically.
This will not be fixed in the library, but will have withCert throw an IllegalArgumentException instead.



参考:

1、
http://marshal.easymorse.com/archives/3312
http://marshal.easymorse.com/archives/3329
2、
http://mobiforge.com/developing/story/programming-apple-push-notification-services
3、
http://blog.csdn.net/f520131480315/article/details/6559577
4、
官方英文版
原创粉丝点击