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(
4545 var endpoint = Options . UserInformationEndpoint ;
4646
4747 // TODO Append any additional query string parameters required
48- //endpoint = QueryHelpers.AddQueryString(endpoint, "token", tokens.AccessToken);
48+ //// endpoint = QueryHelpers.AddQueryString(endpoint, "token", tokens.AccessToken);
4949
5050 using var request = new HttpRequestMessage ( HttpMethod . Get , endpoint ) ;
5151 request . Headers . Accept . Add ( new MediaTypeWithQualityHeaderValue ( "application/json" ) ) ;
5252
5353 // 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);
5555
5656 using var response = await Backchannel . SendAsync ( request , HttpCompletionOption . ResponseHeadersRead , Context . RequestAborted ) ;
5757 if ( ! response . IsSuccessStatusCode )
You can’t perform that action at this time.
0 commit comments