Skip to content

Commit

Permalink
Use no token_endpoint_auth_method, fixes #2
Browse files Browse the repository at this point in the history
  • Loading branch information
idiidk committed Dec 5, 2019
1 parent eb42457 commit 3d1e20f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/authentication.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ export class AuthProvider {
client_id: "M6LOAPP",
redirect_uris: ["m6loapp://oauth2redirect/"],
response_types: ["code id_token"],
id_token_signed_response_alg: "RS256"
id_token_signed_response_alg: "RS256",
token_endpoint_auth_method: "none"
});

this.client[custom.clock_tolerance] = 5;
Expand Down

0 comments on commit 3d1e20f

Please sign in to comment.