我正在使用 c# 和 xaml 开发一个 Windows 商店应用程序。我正在尝试将 twitter 集成到其中,以便用户可以查看他的推文并可以从我的应用程序中发布推文。
因此,当我尝试使用以下代码发布推文时,出现 400 错误。
HttpContent hc = new StringContent("Good Morning");
string hw = "HelloWorld";
string dc = "false";
httpClient.PostAsync(string.Format("https://api.twitter.com/1.1/statuses/update.json?status={0}&display_coordinates={1}", hw, dc), hc);
在从 twitter 成功获得 oauth_token 后,我这样做了。即使在使用 GetAsync() 访问用户的推文时,我也得到相同的 400。
请在这方面提供帮助!
提前致谢