- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken { NSString *token = [NSString stringWithFormat:@"%@", deviceToken]; //獲取終端設備標識,這個標識須要經過接口發送到服務器端,服務器端推送消息到APNS時須要知道終端的標識,APNS經過註冊的終端標識找到終端設備。 NSLog(@"My token is:%@", token); } - (void)application:(UIApplication *)application didFailToRegisterForRemoteNotificationsWithError:(NSError *)error { NSString *error_str = [NSString stringWithFormat: @"%@", error]; NSLog(@"Failed to get token, error:%@", error_str); }
二、在AppDelegate.m的(BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions方法中加入註冊消息通知推送能力;加入當應用程序處於未啓動狀態時,判斷是否由遠程消息通知觸發;加入清除消息推送通知標記。xcode
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { //判斷是否由遠程消息通知觸發應用程序啓動 if ([launchOptions objectForKey:UIApplicationLaunchOptionsRemoteNotificationKey]!=nil) { //獲取應用程序消息通知標記數(即小紅圈中的數字) int badge = [UIApplication sharedApplication].applicationIconBadgeNumber; if (badge>0) { //若是應用程序消息通知標記數(即小紅圈中的數字)大於0,清除標記。 badge--; //清除標記。清除小紅圈中數字,小紅圈中數字爲0,小紅圈纔會消除。 [UIApplication sharedApplication].applicationIconBadgeNumber = badge; } } //消息推送註冊 [[UIApplication sharedApplication] registerForRemoteNotificationTypes:UIRemoteNotificationTypeSound|UIRemoteNotificationTypeAlert|UIRemoteNotificationTypeBadge]; } 3、在項目AppDelegate.m中加入消息接收處理代理方法。 //處理收到的消息推送 - (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo { //在此處理接收到的消息。 NSLog(@"Receive remote notification : %@",userInfo); }
6、JAVA後臺代碼:服務器
public static void main(String[] args) throws Exception { try { //從客戶端獲取的deviceToken,在此爲了測試簡單,寫固定的一個測試設備標識。 String deviceToken = "df779eda 73258894 5882ec78 3ac7b254 6ebc66fe fa295924 440d34ad 6505f8c4" System.out.println("Push Start deviceToken:" + deviceToken); //定義消息模式 PayLoad payLoad = new PayLoad(); payLoad.addAlert("this is test!"); payLoad.addBadge(1);//消息推送標記數,小紅圈中顯示的數字。 payLoad.addSound("default"); //註冊deviceToken PushNotificationManager pushManager = PushNotificationManager.getInstance(); pushManager.addDevice("iPhone", deviceToken); //鏈接APNS String host = "gateway.sandbox.push.apple.com"; //String host = "gateway.push.apple.com"; int port = 2195; String certificatePath = "c:/PushTest.p12";//前面生成的用於JAVA後臺鏈接APNS服務的*.p12文件位置 String certificatePassword = "123456";//p12文件密碼。 pushManager.initializeConnection(host, port, certificatePath, certificatePassword, SSLConnectionHelper.KEYSTORE_TYPE_PKCS12); //發送推送 Device client = pushManager.getDevice("iPhone"); System.out.println("推送消息: " + client.getToken()+"\n"+payLoad.toString() +" "); pushManager.sendNotification(client, payLoad); //中止鏈接APNS pushManager.stopConnection(); //刪除deviceToken pushManager.removeDevice("iPhone"); System.out.println("Push End"); } catch (Exception ex) { ex.printStackTrace(); } } }