gpt4 book ai didi

java - 订阅主题突然抛出 "java.io.IOException: InternalServerError"

转载 作者:行者123 更新时间:2023-12-02 03:37:05 25 4
gpt4 key购买 nike

从今天开始,我遇到了 GCM“订阅主题”的以下问题。Nexus 6、Android 6.0.1、Google Play 服务 9.0.83在应用程序中使用 google-play-services:8.3.0。

第 1 步

我按照 Google 的文档通过实例 ID 获取 token 。获取 token 后,我成功订阅了“topics/global”主题并将 token 存储在共享首选项中。

protected void register() {
SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(this);

try {
// [START register_for_gcm]
// Initially this call goes out to the network to retrieve the token, subsequent calls
// are local.
// R.string.gcm_defaultSenderId (the Sender ID) is typically derived from google-services.json.
// See https://developers.google.com/cloud-messaging/android/start for details on this file.
// [START get_token]
InstanceID instanceID = InstanceID.getInstance(this);
String token = instanceID.getToken(getString(R.string.gcm_defaultSenderId),
GoogleCloudMessaging.INSTANCE_ID_SCOPE, null);
// [END get_token]
Log.i(TAG, "GCM Registration Token: " + token);

// TODO: Implement this method to send any registration to your app's servers.
SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(this);
sharedPreferences.edit().putString("token", token).apply();


// You should store a boolean that indicates whether the generated token has been
// sent to your server. If the boolean is false, send the token to your server,
// otherwise your server should have already received the token.
sharedPreferences.edit().putBoolean(QuickstartPreferences.SENT_TOKEN_TO_SERVER, true).apply();
// [END register_for_gcm]
} catch (Exception e) {
Log.d(TAG, "Failed to complete token refresh", e);
// If an exception happens while fetching the new token or updating our registration data
// on a third-party server, this ensures that we'll attempt the update at a later time.
sharedPreferences.edit().putBoolean(QuickstartPreferences.SENT_TOKEN_TO_SERVER, false).apply();
}
// Notify UI that registration has completed, so the progress indicator can be hidden.
Intent registrationComplete = new Intent(QuickstartPreferences.REGISTRATION_COMPLETE);
LocalBroadcastManager.getInstance(this).sendBroadcast(registrationComplete);
}

第 2 步

一段时间后/在用户交互上我想订阅其他主题。我从共享首选项中获取 token 并尝试像以前一样订阅,但这次失败并出现“java.io.IOException:InternalServerError”。当然,异常被捕获了,但我现在不知道如何继续。

private void subscribeTopics() throws IOException {
SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(this);
String token = sharedPreferences.getString("token", null);
if(token == null) {
Log.e(TAG, "No token");
return;
}

GcmPubSub pubSub = GcmPubSub.getInstance(this);
for (String topic : TOPICS) {
pubSub.subscribe(token, "/topics/" + topic, null); // <--- FAILS HERE
}
Log.d(TAG, "Subscribed to topics.");
}

此流程在过去 5 个月内一直有效,没有出现任何问题。突然,从今天早上开始,订阅其他主题(步骤 2)失败了。您知道切换到 Firebase 云消息传递 (FCM) 是否会带来重大变化吗?

目前我的所有客户端应用程序均无法使用。非常感谢快速帮助。

最佳答案

我是 Google Cloud Messaging 团队的一员。

我们发现支持的问题在过去 24 小时内影响了一小部分主题订阅。该问题已得到解决,订阅应该可以在所有设备上正常运行。

如果您仍然遇到此错误,请告诉我们。

感谢 Steffen 报告该问题。

关于java - 订阅主题突然抛出 "java.io.IOException: InternalServerError",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37324154/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com