How to handle 'expired' Firebase Instance ID Token












2















AFAIK, the Firebase Instance Token will be refreshed under the following 4 conditions:



(i) App deletes Instance ID



(ii) App is restored on a new device



(iii) User uninstalls/reinstall the app



(iv) User clears app data



Suppose a user is using Token A as his 'FCM address'. Every time when he logs in the app, he will register the Token A to the Firestore along with this user's UUID so user-specific cloud message can be sent to him. When he logs out, the system will fire a request to firestore for removing the token A record.



Now, when the user reinstalls the app, the instance id is refreshed and a new Token B is generated. The Token A becomes useless. Unfortunately, if the user does not log out before the uninstallation, token A will stay in the firestore forever.



Any workaround or wiser way to handle this case?










share|improve this question





























    2















    AFAIK, the Firebase Instance Token will be refreshed under the following 4 conditions:



    (i) App deletes Instance ID



    (ii) App is restored on a new device



    (iii) User uninstalls/reinstall the app



    (iv) User clears app data



    Suppose a user is using Token A as his 'FCM address'. Every time when he logs in the app, he will register the Token A to the Firestore along with this user's UUID so user-specific cloud message can be sent to him. When he logs out, the system will fire a request to firestore for removing the token A record.



    Now, when the user reinstalls the app, the instance id is refreshed and a new Token B is generated. The Token A becomes useless. Unfortunately, if the user does not log out before the uninstallation, token A will stay in the firestore forever.



    Any workaround or wiser way to handle this case?










    share|improve this question



























      2












      2








      2


      0






      AFAIK, the Firebase Instance Token will be refreshed under the following 4 conditions:



      (i) App deletes Instance ID



      (ii) App is restored on a new device



      (iii) User uninstalls/reinstall the app



      (iv) User clears app data



      Suppose a user is using Token A as his 'FCM address'. Every time when he logs in the app, he will register the Token A to the Firestore along with this user's UUID so user-specific cloud message can be sent to him. When he logs out, the system will fire a request to firestore for removing the token A record.



      Now, when the user reinstalls the app, the instance id is refreshed and a new Token B is generated. The Token A becomes useless. Unfortunately, if the user does not log out before the uninstallation, token A will stay in the firestore forever.



      Any workaround or wiser way to handle this case?










      share|improve this question
















      AFAIK, the Firebase Instance Token will be refreshed under the following 4 conditions:



      (i) App deletes Instance ID



      (ii) App is restored on a new device



      (iii) User uninstalls/reinstall the app



      (iv) User clears app data



      Suppose a user is using Token A as his 'FCM address'. Every time when he logs in the app, he will register the Token A to the Firestore along with this user's UUID so user-specific cloud message can be sent to him. When he logs out, the system will fire a request to firestore for removing the token A record.



      Now, when the user reinstalls the app, the instance id is refreshed and a new Token B is generated. The Token A becomes useless. Unfortunately, if the user does not log out before the uninstallation, token A will stay in the firestore forever.



      Any workaround or wiser way to handle this case?







      firebase firebase-cloud-messaging






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 25 '18 at 3:28







      jackycflau

















      asked Jul 9 '18 at 4:53









      jackycflaujackycflau

      443515




      443515
























          1 Answer
          1






          active

          oldest

          votes


















          4














          Keeping your token registry up to date requires two steps:




          1. Remove outdated tokens from your application code.

          2. Check for outdated tokens and remove them when you send messages.


          Your approach of removing a token that is no longer used, is #1.



          The second step though is to remove tokens from your registry/database when you get a messaging/invalid-registration-token or messaging/registration-token-not-registered response when trying to send a message to it. The functions-samples repo contains a great example of this:



          admin.messaging().sendToDevice(tokens, payload).then((response) => {
          // For each message check if there was an error.
          const tokensToRemove = ;
          response.results.forEach((result, index) => {
          const error = result.error;
          if (error) {
          console.error('Failure sending notification to', tokens[index], error);
          // Cleanup the tokens who are not registered anymore.
          if (error.code === 'messaging/invalid-registration-token' ||
          error.code === 'messaging/registration-token-not-registered') {
          // TODO: remove the token from your registry/database
          }
          }
          });
          });


          The above code uses the Firebase Admin SDK for Node.js, but the same logic could also be applied to other platforms or when sending messages through the HTTPS endpoints.






          share|improve this answer























            Your Answer






            StackExchange.ifUsing("editor", function () {
            StackExchange.using("externalEditor", function () {
            StackExchange.using("snippets", function () {
            StackExchange.snippets.init();
            });
            });
            }, "code-snippets");

            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "1"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f51238396%2fhow-to-handle-expired-firebase-instance-id-token%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            4














            Keeping your token registry up to date requires two steps:




            1. Remove outdated tokens from your application code.

            2. Check for outdated tokens and remove them when you send messages.


            Your approach of removing a token that is no longer used, is #1.



            The second step though is to remove tokens from your registry/database when you get a messaging/invalid-registration-token or messaging/registration-token-not-registered response when trying to send a message to it. The functions-samples repo contains a great example of this:



            admin.messaging().sendToDevice(tokens, payload).then((response) => {
            // For each message check if there was an error.
            const tokensToRemove = ;
            response.results.forEach((result, index) => {
            const error = result.error;
            if (error) {
            console.error('Failure sending notification to', tokens[index], error);
            // Cleanup the tokens who are not registered anymore.
            if (error.code === 'messaging/invalid-registration-token' ||
            error.code === 'messaging/registration-token-not-registered') {
            // TODO: remove the token from your registry/database
            }
            }
            });
            });


            The above code uses the Firebase Admin SDK for Node.js, but the same logic could also be applied to other platforms or when sending messages through the HTTPS endpoints.






            share|improve this answer




























              4














              Keeping your token registry up to date requires two steps:




              1. Remove outdated tokens from your application code.

              2. Check for outdated tokens and remove them when you send messages.


              Your approach of removing a token that is no longer used, is #1.



              The second step though is to remove tokens from your registry/database when you get a messaging/invalid-registration-token or messaging/registration-token-not-registered response when trying to send a message to it. The functions-samples repo contains a great example of this:



              admin.messaging().sendToDevice(tokens, payload).then((response) => {
              // For each message check if there was an error.
              const tokensToRemove = ;
              response.results.forEach((result, index) => {
              const error = result.error;
              if (error) {
              console.error('Failure sending notification to', tokens[index], error);
              // Cleanup the tokens who are not registered anymore.
              if (error.code === 'messaging/invalid-registration-token' ||
              error.code === 'messaging/registration-token-not-registered') {
              // TODO: remove the token from your registry/database
              }
              }
              });
              });


              The above code uses the Firebase Admin SDK for Node.js, but the same logic could also be applied to other platforms or when sending messages through the HTTPS endpoints.






              share|improve this answer


























                4












                4








                4







                Keeping your token registry up to date requires two steps:




                1. Remove outdated tokens from your application code.

                2. Check for outdated tokens and remove them when you send messages.


                Your approach of removing a token that is no longer used, is #1.



                The second step though is to remove tokens from your registry/database when you get a messaging/invalid-registration-token or messaging/registration-token-not-registered response when trying to send a message to it. The functions-samples repo contains a great example of this:



                admin.messaging().sendToDevice(tokens, payload).then((response) => {
                // For each message check if there was an error.
                const tokensToRemove = ;
                response.results.forEach((result, index) => {
                const error = result.error;
                if (error) {
                console.error('Failure sending notification to', tokens[index], error);
                // Cleanup the tokens who are not registered anymore.
                if (error.code === 'messaging/invalid-registration-token' ||
                error.code === 'messaging/registration-token-not-registered') {
                // TODO: remove the token from your registry/database
                }
                }
                });
                });


                The above code uses the Firebase Admin SDK for Node.js, but the same logic could also be applied to other platforms or when sending messages through the HTTPS endpoints.






                share|improve this answer













                Keeping your token registry up to date requires two steps:




                1. Remove outdated tokens from your application code.

                2. Check for outdated tokens and remove them when you send messages.


                Your approach of removing a token that is no longer used, is #1.



                The second step though is to remove tokens from your registry/database when you get a messaging/invalid-registration-token or messaging/registration-token-not-registered response when trying to send a message to it. The functions-samples repo contains a great example of this:



                admin.messaging().sendToDevice(tokens, payload).then((response) => {
                // For each message check if there was an error.
                const tokensToRemove = ;
                response.results.forEach((result, index) => {
                const error = result.error;
                if (error) {
                console.error('Failure sending notification to', tokens[index], error);
                // Cleanup the tokens who are not registered anymore.
                if (error.code === 'messaging/invalid-registration-token' ||
                error.code === 'messaging/registration-token-not-registered') {
                // TODO: remove the token from your registry/database
                }
                }
                });
                });


                The above code uses the Firebase Admin SDK for Node.js, but the same logic could also be applied to other platforms or when sending messages through the HTTPS endpoints.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Jul 9 '18 at 6:06









                Frank van PuffelenFrank van Puffelen

                231k29379404




                231k29379404






























                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f51238396%2fhow-to-handle-expired-firebase-instance-id-token%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Contact image not getting when fetch all contact list from iPhone by CNContact

                    count number of partitions of a set with n elements into k subsets

                    A CLEAN and SIMPLE way to add appendices to Table of Contents and bookmarks