使用 Tweetsharp 发送地理定位推文
我正在尝试使用 tweetsharp api 发送带有地理定位的推文。我确实使用了
TwitterStatus status = ts.SendTweet(s,lat,lon);
代码。但状态对象引用为空。我如何发送地理定位推文?
I am trying to tweet with geolocation with tweetsharp api. I did use
TwitterStatus status = ts.SendTweet(s,lat,lon);
code. But status object reference is null. How can i send geolocated tweet?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,你没有提供很多细节,但我会尽力提供帮助。我想您已经检索了纬度和经度,并且它们不为空,并且您的变量
s
包含有效的状态字符串。那么,最可能的错误原因是 Twitter API。在调试或打印 ts.Response.StatusCode 和 ts.Response.Response 中使用 ts.Response 检查响应。
希望这可以帮助你。
Well, you didn't give a lot of details but I'll try to help. I suppose you have retrieved latitude and longitude and they're not null, and also that your variable
s
contains a valid status string.Then, the most probable cause of the error is the Twitter API. Check the response with
ts.Response
, either in the debug or printingts.Response.StatusCode
andts.Response.Response
.Hope this may help you.