File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -45,13 +45,13 @@ protected override async Task<AuthenticationTicket> CreateTicketAsync(
45
45
var endpoint = Options . UserInformationEndpoint ;
46
46
47
47
// TODO Append any additional query string parameters required
48
- //endpoint = QueryHelpers.AddQueryString(endpoint, "token", tokens.AccessToken);
48
+ //// endpoint = QueryHelpers.AddQueryString(endpoint, "token", tokens.AccessToken);
49
49
50
50
using var request = new HttpRequestMessage ( HttpMethod . Get , endpoint ) ;
51
51
request . Headers . Accept . Add ( new MediaTypeWithQualityHeaderValue ( "application/json" ) ) ;
52
52
53
53
// TODO Add any HTTP request headers required
54
- //request.Headers.Authorization = new AuthenticationHeaderValue("Bearer", tokens.AccessToken);
54
+ //// request.Headers.Authorization = new AuthenticationHeaderValue("Bearer", tokens.AccessToken);
55
55
56
56
using var response = await Backchannel . SendAsync ( request , HttpCompletionOption . ResponseHeadersRead , Context . RequestAborted ) ;
57
57
if ( ! response . IsSuccessStatusCode )
You can’t perform that action at this time.
0 commit comments