Skip to content

Commit

Permalink
[CC] Corrige erro de Scope
Browse files Browse the repository at this point in the history
  • Loading branch information
RafaelEstevamReis committed Dec 15, 2023
1 parent 5cacf5b commit 119f023
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sicoob.Conta/SicoobContaCorrente.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ protected override void setupClients(HttpClientHandler handler)
}
protected override void atualizaClients(TokenResponse token)
{
clientApi.SetAuthorizationBearer(token.id_token);
clientApi.SetAuthorizationBearer(token.access_token); // Deveria ser o id_token, mas dá erro de falta de scope
}

/// <summary>
Expand Down

0 comments on commit 119f023

Please sign in to comment.