Open GoogleCodeExporter opened 9 years ago
I had the same problem with the oauth_verifier. The problem is a bug in the
method GetQueryParameters: This condition discards every parameter that begins
with oauth_:
if (!string.IsNullOrEmpty(s) && !s.StartsWith(OAuthParameterPrefix))
so there are never parameters returned.
This should work correct:
if (!string.IsNullOrEmpty(s) && s.StartsWith(OAuthParameterPrefix))
Original comment by flushdra...@googlemail.com
on 27 Jun 2011 at 9:33
Original issue reported on code.google.com by
tom.e.os...@gmail.com
on 6 Apr 2011 at 6:18Attachments: