我接近得到这与Microsoft Dynamics CRM应用程序的工作,不过,我得到错误代码214:错误认证数据:(Twitter的API的OAuth(错误代码214:错误认证数据)
认证报头: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;
任何想法,我要错了,为什么我得到这个错误?
你得到它,因为验证数据不好。 – zerkms