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 line 365 of OAuth.php there's an extra double-quote being prepended to
the Authorization header:
$out ='"Authorization: OAuth realm="' . $realm . '",';
This causes the header to be set as:
"Authorization: OAuth ...
Original issue reported on code.google.com by rcken...@gmail.com on 31 Jul 2008 at 3:08
The text was updated successfully, but these errors were encountered:
In addition, the comma at the end of the string in line 365 is causing a double
comma
to appear in the header because the code is prepending commas in line 372:
$out .= ',' . OAuthUtil::urlencodeRFC3986($k) . '="' .
OAuthUtil::urlencodeRFC3986($v) . '"';
This causes the header to be set as:
"Authorization: OAuth realm="therealm",,oauth_consumer_key="myCK",...
Original comment by rcken...@gmail.com on 31 Jul 2008 at 3:13
Could the patch please be applied? I recently ran into the same issues and
wasted
time tracking down this bug. Disheartening to find that it was a known issue for
which a patch is available.
Original comment by bart.tee...@gmail.com on 16 Oct 2008 at 7:53
Original issue reported on code.google.com by
rcken...@gmail.com
on 31 Jul 2008 at 3:08The text was updated successfully, but these errors were encountered: