I’m currently in the process of integrating OpenID Connect for my application’s sign-in with Google feature. The requested scope is as follows:
googleScopes = []string{“openid”, “email”, “profile”}
However, upon parsing the ID token, I noticed that the user’s name is missing. Is this the expected behavior?