OAuth for AppEngine for one, returns an authorization token with a '/'.
GenerateSignatureBase() does not url encode this parameter, and the access
token request fails as a result.
The correct code is:
if (!string.IsNullOrEmpty(token))
{
parameters.Add(new QueryParameter(OAuthTokenKey, UrlEncode(token)));
}
Original issue reported on code.google.com by akbertram on 13 Aug 2010 at 1:30
Original issue reported on code.google.com by
akbertram
on 13 Aug 2010 at 1:30