0

我已经从 google gcm 客户端示例开始实施和应用程序。我得到了一个 regId,这似乎没问题,之后当我尝试使用 Urban Airship 发送推送时,我将我的 regId 放在 APID 字段中,但它出现了一个错误:无效的 APID。

也许我应该使用android中的城市飞艇示例来获取apid?

我认为 APID 和 regID 是一回事。我对吗?

4

1 回答 1

0
   PushManager.shared().setIntentReceiver(PushNotificationPluginIntentReceiver.class);
            String apid = PushManager.shared().getAPID();
            log.info("My Application onCreate - App APID: " + apid);
        }

使用这段代码获取客户端应用程序 id 并将用于测试推送

于 2013-06-13T12:11:33.497 回答