9

I am following this to register my deivce in Firebase

Here I am trying to display and save the notification token

    public class MyFirebaseInstanceIDService extends FirebaseInstanceIdService {

    private static final String TAG = "MyFirebaseIIDService";

    @Override
    public void onTokenRefresh() {
        String refreshedToken = FirebaseInstanceId.getInstance().getToken();
        Log.d(TAG, "Refreshed token: " + refreshedToken);
        storeToken(refreshedToken);
    }

    private void storeToken(String token) {
        //saving the token on shared preferences
        SharedPrefManager.getInstance(getApplicationContext()).saveDeviceToken(token);
    }
}

When I try to register it Always Says Token Token not generated form MainActivity

So Here My Application is connected to Firebase.. and I know that FirebaseInstanceIdService is Deprecated I also tried with this

public class MyFirebaseInstanceIDService extends FirebaseMessagingService {

    private static final String TAG = "MyFirebaseIIDService";

    @Override
    public void onNewToken(String refreshedToken) {
        refreshedToken = FirebaseInstanceId.getInstance().getInstanceId().getResult().getToken();
        Log.d(TAG, "Refreshed token: " + refreshedToken);
        storeToken(refreshedToken);
    }

    private void storeToken(String token) {
        //saving the token on shared preferences
        SharedPrefManager.getInstance(getApplicationContext()).saveDeviceToken(token);
    }
}

But Still same token is not generated

Don't Be negative
  • 1,215
  • 3
  • 19
  • 46
  • Does it show in the window log? – mducc Aug 14 '18 at 06:37
  • read these ..https://stackoverflow.com/questions/47403162/store-token-for-fcm and https://stackoverflow.com/questions/37454501/firebase-fcm-force-ontokenrefresh-to-be-called – Shruti Aug 14 '18 at 06:41

5 Answers5

18

The onTokenRefresh/onNewToken method will only be called when a new token is generated.

Quite often (especially during development) your app will already have generated an Instance ID token before you added the service. So onTokenRefresh/onNewToken will not be called, and you won't have a token in your shared preferences.

For this reason you should get the token directly from your main activity with FirebaseInstanceId.getInstance().getInstanceId() as shown in the documentation. This will pick up the token that was last generated. From there on you use onTokenRefresh/onNewToken to respond to token changes.

Frank van Puffelen
  • 565,676
  • 79
  • 828
  • 807
  • Yes now I understand that Token only Generated only when The App is installed First time... After Getting Token I am Trying to add Shared prefs,,, But After uninstalling Its worked fine.. – Don't Be negative Aug 14 '18 at 07:21
  • So Without Uninstall Can I get Token every time When I run??? If already Token Generated I wont call the Service Which generates Token – Don't Be negative Aug 14 '18 at 07:24
  • An uninstall indeed wipes the token. So upon a reinstall your `onTokenRefresh`/`onNewToken` gets called. As I said in my answer, if you simply want to get the token in your main activity, call `FirebaseInstanceId.getInstance().getInstanceId()`. If that doesn't result in a token, it hasn't been generated yet and your `onTokenRefresh`/`onNewToken` will get called eventually. – Frank van Puffelen Aug 14 '18 at 08:06
  • Yup thanks,,, with your and @MLN Now I got It.. Thanks – Don't Be negative Aug 14 '18 at 09:43
  • @FrankvanPuffelen can you help me with the same issue. My token is not generating even on first run. Here is the link to my question. https://stackoverflow.com/questions/52658578/firebase-fcm-token-not-generating?noredirect=1#comment92247828_52658578 – Vivek Mishra Oct 05 '18 at 05:15
9

Just add this in your code..

    public class MyActivity extends AppCompatActivity {


    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_my);


        SharedPreferences prefs = getSharedPreferences("TOKEN_PREF", MODE_PRIVATE);
        String token = prefs.getString("token", "");

        Log.e("NEW_INACTIVITY_TOKEN", token);

        if (TextUtils.isEmpty(token)) {
            FirebaseInstanceId.getInstance().getInstanceId().addOnSuccessListener(MyActivity.this, new OnSuccessListener<InstanceIdResult>() {
                @Override
                public void onSuccess(InstanceIdResult instanceIdResult) {
                    String newToken = instanceIdResult.getToken();
                    Log.e("newToken", newToken);
                    SharedPreferences.Editor editor = getSharedPreferences("TOKEN_PREF", MODE_PRIVATE).edit();
                    if (token!=null){
                       editor.putString("token", newToken);
                       editor.apply();
                    }

                }
            });
        }

    }


}

Firebase Tokens are called once when the app is installed and runned for the first time so ignore the Saving the data or running this Activity/Service once the Data is Saved with Shared Prefs

Whats Going On
  • 1,379
  • 6
  • 20
  • 49
2

No need to Use getToken() new token already returned by onNewToken argument

@Override
public void onNewToken(String refreshedToken) {
    // No need to assign refreshedToken with getToken,
    // this method called when token refreshed then use returned refreshedToken directly,
    // use `instanceIdResult.getToken()` described below when you need to use token later throw app usage.

    // refreshedToken = FirebaseInstanceId.getInstance().getInstanceId().getResult().getToken();
    Log.d(TAG, "Refreshed token: " + refreshedToken);
    storeToken(refreshedToken);
}

getToken(); is also deprecated

Get Token in your Activity : .getToken(); is also deprecated if you need to get token in your activity then use as following:

FirebaseInstanceId.getInstance().getInstanceId().addOnSuccessListener( MyActivity.this,  new OnSuccessListener<InstanceIdResult>() {
     @Override
     public void onSuccess(InstanceIdResult instanceIdResult) {
           String newToken = instanceIdResult.getToken();
           Log.e("newToken",newToken);

     }
 });
Khaled Lela
  • 7,831
  • 6
  • 45
  • 73
  • 1
    your answer is not actual anymore (they seem to change firebase lietarlly every few months, half of their docs does not work even if you copy paste it and tons of methods are deprecated or completely different). – qkx Aug 20 '20 at 10:34
2

May be it takes some time to generate token. If you don't get it you can generate it as follow: (Reference:https://firebase.google.com/docs/cloud-messaging/android/client?authuser=0)

 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();
                            //Here you will surely get the token so store it in 
                            //sharedpreference for future use

                        }
 });
shashank J
  • 67
  • 7
1

Try this just uninstall and reinstall app because token is not generated everytime you play the app. It's generated when you clear sharePref or reinstall.