我在使用 Urban Airship 时遇到问题,特别是为 Rich Push 注册用户。我有以下代码AppDelegate
//Create Airship options dictionary and add the required UIApplication launchOptions
NSMutableDictionary *takeOffOptions = [NSMutableDictionary dictionary];
[takeOffOptions setValue:launchOptions forKey:UAirshipTakeOffOptionsLaunchOptionsKey];
[UAirship takeOff:takeOffOptions];
[[UAPush shared] resetBadge];
// Register for remote notfications with the UA Library. This call is required.
[[UAPush shared] registerForRemoteNotificationTypes:(UIRemoteNotificationTypeBadge |
UIRemoteNotificationTypeSound |
UIRemoteNotificationTypeAlert)];
- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken {
// Updates the device token and registers the token with UA.
NSString *myAlias = @"Your Alias";
[UAPush shared].alias = myAlias;
[[UAPush shared] registerDeviceToken:deviceToken];
}
这允许我的代码在 Device Tokens 下注册设备,并为 Rich Push 自动生成用户。但是,别名和设备令牌没有传递给 Rich Push 用户,我怀疑这不允许 UA 向我的设备发送丰富的推送。
我错过了什么?我浏览了 iOS 推送的文档并拥有所有相同的代码。任何帮助,将不胜感激!
更新:
所以我创建了一个用户点击/api/user API
端点并暴力破解别名/device_token。但是,我的设备仍然没有得到丰富的推送。我去/api/user/user_id
验证了徽章 > 0,所以 Urban Airship 正在尝试发送这些丰富的推送。有人知道它为什么会丢失吗?