0

今日から、GCMの「トピックの購読」で次の問題が発生しました。Nexus 6、Android 6.0.1、Google Play Services 9.0.83 アプリで google-play-services:8.3.0 を使用。

ステップ1

インスタンス ID からトークンを取得するための Google のドキュメントに従います。トークンを取得した後、「トピック/グローバル」トピックに正常にサブスクライブし、トークンを共有設定に保存します。

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

しばらくして / ユーザーとのやり取りで、追加のトピックを購読したいと思います。共有設定からトークンを取得し、以前と同じようにサブスクライブしようとしましたが、今回は「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 Cloud Messaging (FCM) への切り替えによって重大な変更がもたらされたかどうか、何か考えはありますか?

現在、すべてのクライアント アプリが使用できません。迅速なヘルプは本当にありがたいです。

4

1 に答える 1

2

私は Google Cloud Messaging チームの一員です。

過去 24 時間のトピック サブスクリプションのごく一部に影響を与えた問題が、Backed で特定されました。この問題は既に修正されており、サブスクリプションはすべてのデバイスで正しく機能するはずです。

このエラーが引き続き発生する場合はお知らせください。

問題を報告してくれた Steffen に感謝します。

于 2016-05-19T23:29:37.070 に答える