We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50ca957 commit 35a9f08Copy full SHA for 35a9f08
oauth2/__init__.py
@@ -369,7 +369,7 @@ def get_normalized_parameters(self):
369
# spec draft 7, section 3.6
370
# (http://tools.ietf.org/html/draft-hammer-oauth-07#section-3.6)
371
# Spaces must be encoded with "%20" instead of "+"
372
- return encoded_str.replace('+', '%20')
+ return encoded_str.replace('+', '%20').replace('%7E', '~')
373
374
def sign_request(self, signature_method, consumer, token):
375
"""Set the signature parameter to the result of sign."""
0 commit comments