8000
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 055af91 commit a9d2018Copy full SHA for a9d2018
oauth/oauth.py
@@ -240,11 +240,7 @@ def get_normalized_parameters(self):
240
except:
241
pass
242
param_str = urlparse.urlparse(self.http_url)[4] # query
243
- for p in param_str.split("&"):
244
- s = p.split("=", 1)
245
- if len(s) == 2 :
246
- k,v = s
247
- params[k] = v
+ params.update(OAuthRequest._split_url_string(param_str))
248
249
# Escape key values before sorting.
250
key_values = [(escape(_utf8_str(k)), escape(_utf8_str(v))) \
0 commit comments