使用 Twitter API 发送直接消息
我尝试使用 Twitter API 使用 C# 发送直接消息,但 Twitter 一直说:
“远程服务器返回错误:(401) 未经授权。”
但这没有任何意义,因为我可以在获得授权的情况下使用其他 API 调用。
一些背景信息:
我创建了一个具有以下访问权限的应用程序:读取、写入和访问直接消息
我可以在时间线中成功发布状态:
https://dev.twitter.com/docs/api/1/post/statuses/update
我还可以检索发送给我的所有直接消息:
<一href="https://dev.twitter.com/docs/api/1/get/direct_messages" rel="nofollow">https://dev.twitter.com/docs/api/1/get/direct_messages
问题是当我尝试发送直接消息时:
I trying to use twitter API to send direct messages using C# but Twitter keeps saying:
"The remote server returned an error: (401) Unauthorized."
But this has no sense because I could use other API calls where I was authorized.
Some background info:
I created an application with these access permissions: Read, Write and Access direct messages
I could succesfully post a status in my timeline:
https://dev.twitter.com/docs/api/1/post/statuses/update
I could also retrieve all the direct messages sent to me:
https://dev.twitter.com/docs/api/1/get/direct_messages
The problem is when I try to send a direct message:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我还不知道出了什么问题,但我可以使用一个名为 tweetsharp 的开源项目让它工作。您可以下载它并查看有效的代码:
Tweet Sharp
这里是一个代码示例
I couldn't figure out yet what's wrong, but I could make it work using a open source project called tweetsharp. You can download it and see the code that works:
Tweet Sharp
here is a code example
您是否检查过您是否正在关注消息收件人以及他们是否正在关注您?在您可以向某人发送 DM 之前,必须是这种情况。
Have you checked that you are following the message recipient and that they are following you? This must be the case before you can DM a person.