firebase.messaging.getToken()
returns a string token. Let's call this fcmToken. I want to save this fcmToken to Firebase Realtime database as the key. Put another way, the data structure would look like this { $uid : { fcmToken1 : timestamp1, fcmToken2 : timestamp2, fcmTokenN : timestampN } }
What is the maximum length of a FCM token? It is because I want to save the FCM token as a key in Firebase Realtime database?