我正在尝试使用Tumblr API V2 oAuth和c#OAuthBase.cs。 oAuth c# Base Class
然后我继承了tumblr oAuth Example。
当我尝试这个时:
oAuthTumblr oAuth = new oAuthTumblr();
oAuth.xAuthAccessTokenGet(txtUsername.Text, txtPassword.Text);
if (oAuth.TokenSecret.Length > 0)
{
string bName = "good";
string url = string.Format("http://api.tumblr.com/v2/blog/{0}.tumblr.com/followers",bName);
xml = oAuth.oAuthWebRequest(oAuthTumblr.Method.GET, url, String.Empty);
webBrowser1.DocumentText = HttpUtility.HtmlEncode(xml);
}
我收到错误400错误请求
请帮忙
由于