Open GoogleCodeExporter opened 9 years ago
I've got this problem too, maybe someone found a solution?
Original comment by julius.s...@gmail.com
on 19 Jan 2011 at 12:32
I'm having this problem as well, Objective-C OAuth POST request with parameters
in the Uri. Does not return the same oauth_signature as Apache Commons, though
it does for GET requests with or without parameters and POST requests without
them.
Original comment by thom...@gmail.com
on 25 Jan 2011 at 12:43
Original comment by morten.f...@gmail.com
on 29 Mar 2011 at 4:28
I found passing in the POST data in the OAuthRequest constructor should work
around the problem. The issue is that the base_string does not have the
parameter appended because there are no parameters set on a POST request.
Example:
$req = new OAuthRequest($method, $uri, $_POST);
Original comment by mitmaro
on 22 Jun 2011 at 3:00
Original issue reported on code.google.com by
lgome...@gmail.com
on 24 Jun 2010 at 9:47