Skip to content

Commit

Permalink
Merge pull request #844 from kobotoolbox/django-oauth-no-pkce
Browse files Browse the repository at this point in the history
Fix "Code challenge required" error when using OAuth2 applications
  • Loading branch information
jnm authored Aug 29, 2022
2 parents 7e3fd63 + 0b61c58 commit d62dab7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion onadata/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,9 @@ def skip_suspicious_operations(record):
'SCOPES': {
'read': 'Read scope',
'write': 'Write scope',
'groups': 'Access to your groups'}
'groups': 'Access to your groups'
},
'PKCE_REQUIRED' : False,
}

# All registration should be done through KPI, so Django Registration should
Expand Down

0 comments on commit d62dab7

Please sign in to comment.