Twitter API oAuth(错误代码214:错误的认证数据)
我正在接近使用Microsoft Dynamics CRM应用程序,但是,我得到错误代码214:错误的身份验证数据。:(
请求网址是:https://api.twitter.com/1.1/statuses/user_timeline.json?screen_name=aspas10&since_id=342379690448805888
Authentication Header:OAuth oauth_nonce =“ **** ”,oauth_signature_method =“HMAC-SHA1”,oauth_timestamp =“1372370208”,oauth_consumer_key =“ ***** ”,oauth_token =“ ********** “,oauth_signature =” ******** “,oauth_version =”1.0“
我的代码包括:
request.Headers.Add(“Authorization”, authHeader);
request.Method = “GET”;
request.ContentType = “application/x-www-form-urlencoded”;
var response = (HttpWebResponse)request.GetResponse();
return response;
任何想法,我错了,为什么我得到这个错误?
你可以请张贴你如何获得authHeader的代码? 我认为问题在那里。
也看看这个例子,并确保你有相同的标题:
http://code.msdn.microsoft.com/windowsapps/Twitter-OAuth-Example-3a99967f
问候,
马里奥
PS:也许是我的代理,但我无法导航到https://api.twitter.com/1.1/statuses/user_timeline.json?screen_name=aspas10&since_id=342379690448805888
链接地址: http://www.djcxy.com/p/66189.html上一篇: Twitter API oAuth (Error code 214: Bad authentication data)