Google GCM:如何触发令牌刷新流程?

时间:2015-12-18 13:55:23

标签: android google-cloud-messaging

根据Android的新Google GCM实施,有一种新方法在刷新令牌时调用。

@Override
public void onTokenRefresh() {
    // Fetch updated Instance ID token and notify our app's server of any changes (if applicable).
    Intent intent = new Intent(this, RegistrationIntentService.class);
    startService(intent);
}

我想询问是否有任何方法可以触发此流程以测试所描述的功能,因为文档中不包含任何有关此信息的信息。

提前致谢!

0 个答案:

没有答案