TweetSharp 删除/撤消转发
我正在使用 TweetSharp 作为一个小型 Twitter 应用程序。我可以选择一条推文并转发它......但我找不到撤消该操作的方法。
TweetSharp 中没有该功能还是只有我有这个功能:)?
I am using TweetSharp for an little twitter application. I am able to select an tweet and retweet it... but I can't find a way to undo that action.
Is that functionality not available in TweetSharp or is it just me :) ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要修复 TweetSharp 可能出现错误 86 或 HTTP 400 错误请求的情况,请在 https 上分叉/下载源代码://github.com/danielcrenna/tweetsharp 并在 _TwitterService.2.Tweets.json。
修复第 #8 行以使用 POST 而不是 DELETE:
重建库,并在 TwitterService. generated.cs 中,您应该能够找到如下所示的输出:
To fix the case where one may be getting an error 86 or HTTP 400 Bad Request with TweetSharp, fork/download the source at https://github.com/danielcrenna/tweetsharp and locate these lines (7-8) in _TwitterService.2.Tweets.json.
Fix line #8 to use POST instead of DELETE:
Rebuild the library, and in TwitterService.generated.cs, you should be able to locate output that looks like this:
我找到了一个解决方案,首先,您必须使用原始推文 ID 来获取转发消息,然后您将获得转发 ID。有了这个 ID,你就可以调用“DeleteTweet”...然后它就可以工作了。
I Found a solution, First you have to get your retweet message by using the original tweet Id and with that result you get the retweet Id. With that Id you can call "DeleteTweet"... then it will work.