城市飞艇未更新iOS上的标签

城市飞艇未更新iOS上的标签,ios,push-notification,apple-push-notifications,urbanairship.com,Ios,Push Notification,Apple Push Notifications,Urbanairship.com,我正在尝试更新iOS设备上的标记。代码看起来像 NSArray* tags = @[@"some-tag", @"some-other-tag"]; // Tags are actually 55 characters long UAPush* push = [UAPush shared]; [push setTags:tags];//update locally [push updateRegistration];//update server NSLog(@"Updated tags %@"

我正在尝试更新iOS设备上的标记。代码看起来像

NSArray* tags = @[@"some-tag", @"some-other-tag"]; // Tags are actually 55 characters long
UAPush* push = [UAPush shared];
[push setTags:tags];//update locally
[push updateRegistration];//update server
NSLog(@"Updated tags %@", push.tags);
push.tags打印正确。然而,在UA观众页面上,我可以看到标签还没有更新。 为了让事情变得更加奇怪,API调用
https://go.urbanairship.com/api/device_tokens/{{token}
返回不同的标签,然后是我的设备上显示的标签和UA观众页面中显示的标签


这可能是什么原因造成的

Urban Airship在特定应用程序的注册事件中遇到延迟,这与大量新设备代币的涌入有关。附加设备令牌由iOS 7创建,作为每个生产应用程序配置一个新设备令牌的一部分


注册延迟应在本帖发布时清除。

我看到了确切的问题。。。UA是怎么回事?我经历过UA的“观众”->“设备令牌”页面没有显示任何标记,但是调用上面提到的API调用可以正确地显示它们。我想他们正在注册,但他们的用户界面中有某种错误。