You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the routine "get_normalized_parameters()" combined with "build_signature_base_string()" line 614
escape(oauth_request.get_normalized_parameters()),
the parmeters are being double escaped. This makes the authentication token invalid as the actual URL does not have a double escaped search string.
For example search string "Charlie Brown" has an authentication token created with "Charlie%2520Brown" while the actual URL uses the search "Charlie%20Brown" and thus returns with an invalid authentication token error.
This can be fixed in "get_normalized_parameters()" line 230 if changed as below:
In the routine "get_normalized_parameters()" combined with "build_signature_base_string()" line 614
escape(oauth_request.get_normalized_parameters()),
the parmeters are being double escaped. This makes the authentication token invalid as the actual URL does not have a double escaped search string.
For example search string "Charlie Brown" has an authentication token created with "Charlie%2520Brown" while the actual URL uses the search "Charlie%20Brown" and thus returns with an invalid authentication token error.
This can be fixed in "get_normalized_parameters()" line 230 if changed as below:
to:
key_values = [(_utf8_str(k), _utf8_str(v)) \
I noticed this when adding video search to the vimeo functions found at:
http://github.com/dkm/python-vimeo
This issue may existing in other places but that is the only case that impacted my code.
The text was updated successfully, but these errors were encountered: