In what period does the firebase's app token changes and how to manage it?

后端 未结 3 543
梦谈多话
梦谈多话 2020-11-29 04:10

I am new to firebase I am learning it like a toddler learning to walk. So far I have managed to send a message to my own phone using a token generated for my phone by fireba

相关标签:
3条回答
  • On initial startup of your app, the sdk of FCM generates the registration token for the client app instance. As above said, It is a rare event. To be specific,The registration token may change when:

    • The app deletes Instance ID.
    • The app is restored on a new device
    • The user uninstall/reinstall the app
    • The user clears app data.

    Instance ID provides a unique ID per instance of your apps.Instance ID provides a simple API to generate security tokens that authorize third parties to access your app's server side managed resources.The Instance ID server can even tell you when the device on which your app is installed was last used.We can use this to decide whether to keep data from the app or send a push message to re-engage with the users.

    Every time the device token is changed, It is reflected in onTokenRefresh() method.For getting the device token when it is changed, we can call this method to get the refreshed token.

    and to get the device token at any time we can use FirebaseInstanceId.getInstance().getToken() method to get the current device token.It takes a bit of time to get the device token.

    Click here to read more about accessing device registration token.

    0 讨论(0)
  • 2020-11-29 04:27

    The token is generated, after the app is first launched, as soon as the phone can connect to the Google servers. Due to the required connectivity this might not happen immediately, but in most of the cases it will happen in few seconds after the user open the app. As soon as the token is generated the method onTokenRefresh() is called.

    As you pointed out the token can change, in which case the onTokenRefresh() method will be called again.
    The refresh event is somehow rare, don't expect to see it often at all.

    When the refresh token happens, all the messages that have been "successfully" sent (the API returned you a message-id) to the old token will be delivered.

    Finally, even after the refresh happened the old token will still be working for a short period, to allow the app to communicate the new token to its back-end.

    0 讨论(0)
  • 2020-11-29 04:37
    • onTokenRefresh() and FirebaseInstanceIdService are deprecated.
    • This call is also deprecated FirebaseInstanceId.getInstance().getToken()

    Instead, You should override onNewToken(String token) in FirebaseMessagingService. This method triggered when the token is changed. Once you override this method, you can safely remove FirebaseInstanceIdService whcih contains onTokenRefresh().

    When token can change?

    • App deletes Instance ID
    • App is restored on a new device
    • User uninstalls/reinstall the app
    • User clears app data

    How to retrieve the current token:

    by calling FirebaseInstanceId.getInstance().getInstanceId():

    FirebaseInstanceId.getInstance().getInstanceId()
        .addOnCompleteListener(new OnCompleteListener<InstanceIdResult>() {
            @Override
            public void onComplete(@NonNull Task<InstanceIdResult> task) {
                if (!task.isSuccessful()) {
                    Log.w(TAG, "getInstanceId failed", task.getException());
                    return;
                }
    
                // Get new Instance ID token
                String token = task.getResult().getToken();
    
                // Log and toast
                String msg = getString(R.string.msg_token_fmt, token);
                Log.d(TAG, msg);
                Toast.makeText(MainActivity.this, msg, Toast.LENGTH_SHORT).show();
            }
        });
    

    For more info: https://firebase.google.com/docs/cloud-messaging/android/client

    For Managing tokens for specific sender id (other than the default sender id), check here

    0 讨论(0)
提交回复
热议问题