You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm implementing OIDC in an Excel plugin, using IdentityModel and OidcClient. It works in x64 dotnet but seemingly not when running x86.
The auth server is returning me the first part of the code, but when I try to redeem the code it hangs.
ResponseProcessor.cs line 181 when calling await client.RequestAuthorizationCodeTokenAsync(...)
I'll get the source for IdentityModel and keep debugging, but it's been plaguing me for days - Has anyone else seen any issues with x86 dotnet?
private async Task<TokenResponse> RedeemCodeAsync(string code, AuthorizeState state, Parameters backChannelParameters, CancellationToken cancellationToken)
{
_logger.LogTrace("RedeemCodeAsync");
var client = _options.CreateClient();
// The following line hangs in x86 dotnet
var tokenResult = await client.RequestAuthorizationCodeTokenAsync(new AuthorizationCodeTokenRequest
{
...
The text was updated successfully, but these errors were encountered:
zzstuzor
changed the title
RequestAuthorizationCodeTokenAsync hanging when called from 32-bit dotnet
RequestAuthorizationCodeTokenAsync hanging
Dec 3, 2024
It seems to be hanging at the line below, and fails with a timeout.
I've created a basic console app to test it without the Excel plugin part, and it seems to be failing in both x64 and x86 (I've updated the ticket title to remove the 32-bit part). It works on one computer but not the other.
Any ideas why this part might fail even though the initial step of login succeeds? Perhaps some environmental issue on my computer?
I'm implementing OIDC in an Excel plugin, using IdentityModel and OidcClient. It works in x64 dotnet but seemingly not when running x86.
The auth server is returning me the first part of the code, but when I try to redeem the code it hangs.
ResponseProcessor.cs line 181 when calling
await client.RequestAuthorizationCodeTokenAsync(...)
I'll get the source for IdentityModel and keep debugging, but it's been plaguing me for days - Has anyone else seen any issues with x86 dotnet?
The text was updated successfully, but these errors were encountered: