I have a custom back-end to which the client send the login firebase token which the server verifies and gets the decoded token, for the most part it contains enough information but I need the display name of the user with it to sync it with other clients, I can however make this by calling admin.auth().getuser(uid) I want to avoid making extra call and have other round trip just to get the display name.
Maybe I am overthinking but Isn't there a way to get that in a single call with verifyToken?