zhouweidong / oauth

Automatically exported from code.google.com/p/oauth
0 stars 0 forks source link

invalid oauth signature with URL in '; #210

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. in python module.
2. with OAuthSignatureMethod_HMAC_SHA1
3. API URL with ';' makes invalid signature.

What is the expected output? What do you see instead?
Makes invalid signature.
if ';' in http_url.

What version of the product are you using? On what operating system?
1.0 and 1.0.1

Please provide any additional information below.
urlparse.urlparse split "params" in URL.
This truncate url after ';' character.

use urlparse.urlsplit to fix this problem.

Original issue reported on code.google.com by ueki....@gmail.com on 29 Aug 2011 at 8:30