Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

retrieve registered token from firebase console

I understand that client app send request for registration and firebase return with some token which we need to store on our app server so that later can be used for sending notification to particular device. I want to know is there any way to get the same token on firebase server using it's console?

Thanks

like image 266
Pushpendra Avatar asked Jun 09 '18 17:06

Pushpendra


People also ask

Where are Firebase tokens saved?

The token should be saved inside your systems data-store and should be easily accessible when required. The examples below use a Cloud Firestore database to store and manage the tokens, and Firebase Authentication to manage the users identity. You can however use any datastore or authentication method of your choice.

How do I check my Firebase device token?

whenewer your Application is installed first time and open,MyFirebaseMessagingService created and onNewToken(String token) method called and token generated which is your Device Token or FCM Token. you can use it in Google Firebase Test device id or in Pushtry.com when testing.


1 Answers

The Firebase console has no feature to show what FCM Instance ID tokens have been handed out. If you want to have listing of all the tokens in your app, you will have to store it yourself.

like image 107
Frank van Puffelen Avatar answered Sep 28 '22 07:09

Frank van Puffelen