Ios 城市飞艇的设备标识不正确?

Ios 城市飞艇的设备标识不正确?,ios,xcode,push,urbanairship.com,Ios,Xcode,Push,Urbanairship.com,我正在尝试在我的应用程序中实现推送通知。所以,为了测试,我建立了一个新的应用程序,并完成了所有必要的步骤(我希望…)。我在我的项目中添加了以下内容: -AirshipConfig.plist -libUAirship-1.1.4.a -UAGLobal. -UAirship.h -UAObservable.h -UAPush.h 以及他们网站上列出的所有框架 我的AppDelegate.m是: #import "AppDelegate.h" #import "UAirship.h" #impo

我正在尝试在我的应用程序中实现推送通知。所以,为了测试,我建立了一个新的应用程序,并完成了所有必要的步骤(我希望…)。我在我的项目中添加了以下内容:

-AirshipConfig.plist
-libUAirship-1.1.4.a
-UAGLobal.
-UAirship.h
-UAObservable.h
-UAPush.h
以及他们网站上列出的所有框架

我的AppDelegate.m是:

#import "AppDelegate.h"
#import "UAirship.h"
#import "UAPush.h"

@implementation AppDelegate

@synthesize window = _window;

-(void)setupPushWithOptions:(NSDictionary *)launchOptions {


//URBAN AIRSHIP PUSH NOTIFICATION CONFIGURATION
//Init Airship launch options
NSMutableDictionary *airshipConfigOptions = [[NSMutableDictionary alloc] init];
//[airshipConfigOptions setValue:@"5QQmJyTMRZWks0nbx-9pHQ" forKey:@"DEVELOPMENT_APP_KEY"];
//[airshipConfigOptions setValue:@"OMuzzHdCQOCnrOtfiWox9Q" 
forKey:@"DEVELOPMENT_APP_SECRET"];
[airshipConfigOptions setValue:@"xrUoy0B1RdyjZqZXEuwIsg" forKey:@"PRODUCTION_APP_KEY"];
[airshipConfigOptions setValue:@"qiRlUvoaSHGNeXxw9pj71w" forKey:@"PRODUCTION_APP_SECRET"];

#ifdef DEBUG
[airshipConfigOptions setValue:@"NO" forKey:@"APP_STORE_OR_AD_HOC_BUILD"];
#else
[airshipConfigOptions setValue:@"YES" forKey:@"APP_STORE_OR_AD_HOC_BUILD"];
#endif

NSMutableDictionary *takeOffOptions = [[NSMutableDictionary alloc] init];
[takeOffOptions setValue:launchOptions forKey:UAirshipTakeOffOptionsLaunchOptionsKey];
[takeOffOptions setValue:airshipConfigOptions 
forKey:UAirshipTakeOffOptionsAirshipConfigKey];    

// Create Airship singleton that's used to talk to Urban Airship servers.
// Please replace these with your info from http://go.urbanairship.com
[UAirship takeOff:takeOffOptions];

[[UAPush shared] resetBadge];//zero badge on startup    
[[UAPush shared] 
registerForRemoteNotificationTypes:UIRemoteNotificationTypeNewsstandContentAvailability|UIRemoteNotificationTypeAlert]; // register for Newsstand and Alerts

}

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:
(NSDictionary *)launchOptions
{
// Override point for customization after application launch.
//Init Airship launch options
NSMutableDictionary *takeOffOptions = [[NSMutableDictionary alloc] init];
[takeOffOptions setValue:launchOptions forKey:UAirshipTakeOffOptionsLaunchOptionsKey];

// Create Airship singleton that's used to talk to Urban Airship servers.
// Please populate AirshipConfig.plist with your info from http://go.urbanairship.com
[UAirship takeOff:takeOffOptions];
[[UIApplication sharedApplication]
 registerForRemoteNotificationTypes:(UIRemoteNotificationTypeBadge |
                                     UIRemoteNotificationTypeSound |
                                     UIRemoteNotificationTypeAlert)];
// Override point for customization after application launch.

[self setupPushWithOptions:launchOptions];
return YES;
}

- (void)application:(UIApplication *)application  
didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken {
UALOG(@"APN device token: %@", deviceToken);
 NSLog(@"%@", deviceToken);
// Updates the device token and registers the token with UA
[[UAirship shared] registerDeviceToken:deviceToken];
}

- (void)applicationWillResignActive:(UIApplication *)application
{
}

- (void)applicationDidEnterBackground:(UIApplication *)application
{
}

- (void)applicationWillEnterForeground:(UIApplication *)application
{
}

- (void)applicationDidBecomeActive:(UIApplication *)application
{
}

- (void)applicationWillTerminate:(UIApplication *)application
{
}

-(void)application:(UIApplication *)application  
didFailToRegisterForRemoteNotificationsWithError:(NSError *)error {
NSLog(@"Failing in APNS registration: %@",error);
}

@end
通过这种方式,我得到了错误Apple Push service rejected device token
但我也发现我的设备令牌无法正确检索。根据UA工作人员的建议,我从Appstore下载了广角应用,并在连接iPhone和打开Xcode控制台的情况下启动了它。因此,我可以看到我的设备令牌是另一个……问题出在哪里?

你不应该像这样将你的变量硬编码到城市飞艇上

创建AirshipConfig.plist库使用.plist配置 名为AirshipConfig.plist的文件,用于管理生产和 开发应用程序配置文件

在你的城市飞艇帐户中创建2个应用程序-一个用于 开发&生产的另一个选择。例如:应用程序开发人员的姓名 您的应用程序产品的名称创建AirshipConfig.plist文件设置 将以下值添加到应用程序中的值