我有一个应用程序试图对Twitter提要进行简单的GET调用,但是它失败并出现上述错误。在调用下面的代码之前,我能够成功获得access_token。
string lUrl = "https://api.twitter.com/1.1/search/tweets.json&q=" + HttpUtility.UrlEncode("@typescriptlang");
var headerFormat = "Bearer {0}";
var authHeader = string.Format(
headerFormat,
Convert.ToBase64String(Encoding.ASCII.GetBytes(HttpUtility.UrlEncode(access_token)))
);
HttpWebRequest lRequest = HttpWebRequest.CreateHttp(lUrl);
lRequest.Method = "GET";
lRequest.Headers.Add("Authorization", authHeader);
WebResponse lResponse = lRequest.GetResponse();
答案 0 :(得分:0)
好的,这正是你需要做的,我已经测试了这个,这是一个有效的解决方案:
private string oAuthConsumerKey = ConfigurationManager.AppSettings["oAuthConsumerKey"];
private string oAuthConsumerSecret = ConfigurationManager.AppSettings["oAuthConsumerSecret"];
private string oAuthUrl = ConfigurationManager.AppSettings["oAuthUrl"];
private static string searchFormat = ConfigurationManager.AppSettings["searchFormat"];
private string searchUrl = string.Format(searchFormat, "%23test");
public string GetSearch()
{
// Do the Authenticate
var authHeaderFormat = "Basic {0}";
var authHeader = string.Format(authHeaderFormat,
Convert.ToBase64String(
Encoding.UTF8.GetBytes(Uri.EscapeDataString(oAuthConsumerKey) + ":" +
Uri.EscapeDataString((oAuthConsumerSecret)))
));
var postBody = "grant_type=client_credentials";
HttpWebRequest authRequest = (HttpWebRequest)WebRequest.Create(oAuthUrl);
authRequest.Headers.Add("Authorization", authHeader);
authRequest.Method = "POST";
authRequest.ContentType = "application/x-www-form-urlencoded;charset=UTF-8";
authRequest.AutomaticDecompression = DecompressionMethods.GZip | DecompressionMethods.Deflate;
using (Stream stream = authRequest.GetRequestStream())
{
byte[] content = ASCIIEncoding.ASCII.GetBytes(postBody);
stream.Write(content, 0, content.Length);
}
authRequest.Headers.Add("Accept-Encoding", "gzip");
WebResponse authResponse = authRequest.GetResponse();
// deserialize into an object
TwitAuthenticateResponse twitAuthResponse;
using (authResponse)
{
using (var reader = new StreamReader(authResponse.GetResponseStream()))
{
JavaScriptSerializer js = new JavaScriptSerializer();
var objectText = reader.ReadToEnd();
twitAuthResponse = JsonConvert.DeserializeObject<TwitAuthenticateResponse>(objectText);
}
}
// Do the timeline
HttpWebRequest timeLineRequest = (HttpWebRequest)WebRequest.Create(searchUrl);
var timelineHeaderFormat = "{0} {1}";
timeLineRequest.Headers.Add("Authorization",
string.Format(timelineHeaderFormat, twitAuthResponse.token_type,
twitAuthResponse.access_token));
timeLineRequest.Method = "Get";
WebResponse timeLineResponse = timeLineRequest.GetResponse();
var timeLineJson = string.Empty;
using (timeLineResponse)
{
using (var reader = new StreamReader(timeLineResponse.GetResponseStream()))
{
timeLineJson = reader.ReadToEnd();
}
}
return timeLineJson;
}
您还需要将其添加到appsettings中的web或app.config:
<add key="searchFormat" value="https://api.twitter.com/1.1/search/tweets.json?q={0}"/>
我将更新我的GitHub项目,以便今天晚些时候将其包括在内:
https://github.com/andyhutch77/oAuthTwitterTimeline
将会有一些代码取消注释以显示搜索。我可能不得不重新考虑它现在正在搜索的项目名称。
请注意,如果它不起作用,您可能会在Twitter端遇到有关您的申请限制的问题。我还读到有些人在共享IP地址上遇到了问题。