Reputation: 1762
Is there a way to validate Firebase registration tokens on my server without making a round trip to Firebase servers? I just want to know if they are valid, not necessarily active.
Upvotes: 0
Views: 175
Reputation: 37778
There is currently no way to validate tokens on your own.
I presume that you intend to validate it by checking the format, which would be unadvisable. Token formats have the tendency to change as Google wants it too.
Upvotes: 1