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 1f05430 commit 50ca957Copy full SHA for 50ca957
oauth2/__init__.py
@@ -359,7 +359,10 @@ def get_normalized_parameters(self):
359
360
# Include any query string parameters from the provided URL
361
query = urlparse.urlparse(self.url)[4]
362
- items.extend(self._split_url_string(query).items())
+
363
+ url_items = self._split_url_string(query).items()
364
+ non_oauth_url_items = list([(k, v) for k, v in url_items if not k.startswith('oauth_')])
365
+ items.extend(non_oauth_url_items)
366
367
encoded_str = urllib.urlencode(sorted(items))
368
# Encode signature parameters per Oauth Core 1.0 protocol
0 commit comments