When signing in to Stack-overflow, for example, you get the following consent screen:
1.In my consent screen settings I must give my email. How can I make it so that no email is displayed or a non-gmail email address is displayed ?
2.My consent screen asks for email and basic info. I want it to only ask for email. Where in my MVC app I can config the google authentication to only request email permission ?
EDIT: Regarding question 2, I found the answer:
var googleAuthOptions = new GoogleOAuth2AuthenticationOptions();
googleAuthOptions.Scope.Add("openid email");