Is it possible to add small pieces of data to the Firebase ID Token? For example, it seems some fields like uid, email, displayName and phoneNumber are part of it. Could I add firstName and lastName fields too?
The use case is every now and then, I need to access the first and last names of the logged in user. If not the ID token, where else can I store them, if at all?
I was considering storing in custom claims, but it feels like I'd be abusing the feature.