Open GoogleCodeExporter opened 8 years ago
To be correct, the fix should be applied both on OAuthBase and in OAuthUtils.
The
latter overrides GenerateTimeStamp() from OAuthBase trying to implement the same
thing in a different way.
return Convert.ToInt64(span.TotalSeconds).ToString();
is a correct implementation, while
string str = span.TotalSeconds.ToString();
int index = str.IndexOf(".");
ecc...
is not. I suggest deleting OAuthUtil.GenerateTimeStamp() override.
Original comment by giancarl...@gmail.com
on 25 Nov 2009 at 2:47
Original comment by morten.f...@gmail.com
on 5 Jan 2010 at 11:36
Original issue reported on code.google.com by
giorgio....@gmail.com
on 25 Nov 2009 at 1:43