6 writes to UserInformationEndpoint
Microsoft.AspNetCore.Authentication.Facebook (1)
FacebookOptions.cs (1)
24UserInformationEndpoint = FacebookDefaults.UserInformationEndpoint;
Microsoft.AspNetCore.Authentication.Google (1)
GoogleOptions.cs (1)
23UserInformationEndpoint = GoogleDefaults.UserInformationEndpoint;
Microsoft.AspNetCore.Authentication.MicrosoftAccount (1)
MicrosoftAccountOptions.cs (1)
23UserInformationEndpoint = MicrosoftAccountDefaults.UserInformationEndpoint;
Microsoft.AspNetCore.Authentication.Test (1)
FacebookTests.cs (1)
328o.UserInformationEndpoint = customUserInfoEndpoint;
SocialSample (2)
Startup.cs (2)
122o.UserInformationEndpoint = "https://api.github.com/user"; 176o.UserInformationEndpoint = "https://demo.identityserver.io/connect/userinfo";
5 references to UserInformationEndpoint
Microsoft.AspNetCore.Authentication.Facebook (1)
FacebookHandler.cs (1)
42var endpoint = QueryHelpers.AddQueryString(Options.UserInformationEndpoint, "access_token", tokens.AccessToken!);
Microsoft.AspNetCore.Authentication.Google (1)
GoogleHandler.cs (1)
47var request = new HttpRequestMessage(HttpMethod.Get, Options.UserInformationEndpoint);
Microsoft.AspNetCore.Authentication.MicrosoftAccount (1)
MicrosoftAccountHandler.cs (1)
43var request = new HttpRequestMessage(HttpMethod.Get, Options.UserInformationEndpoint);
SocialSample (2)
Startup.cs (2)
137var request = new HttpRequestMessage(HttpMethod.Get, context.Options.UserInformationEndpoint); 198var request = new HttpRequestMessage(HttpMethod.Get, context.Options.UserInformationEndpoint);