Skip to content

Commit

Permalink
Set a JWT signature algorithm for the Globus backend to RS512
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaszlacinski authored and nijel committed Dec 15, 2021
1 parent 5c8f653 commit 1ea27e8
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions social_core/backends/globus.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
class GlobusOpenIdConnect(OpenIdConnectAuth):
name = 'globus'
OIDC_ENDPOINT = 'https://auth.globus.org'
JWT_ALGORITHMS = ['RS256', 'RS512']
EXTRA_DATA = [
('expires_in', 'expires_in', True),
('refresh_token', 'refresh_token', True),
Expand Down

0 comments on commit 1ea27e8

Please sign in to comment.