使用 Twitter API 发送直接消息

发布于 2024-12-26 10:00:44 字数 728 浏览 0 评论 0原文

我尝试使用 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

问题是当我尝试发送直接消息时:

https://dev.twitter.com/docs/api/1/post/direct_messages/new

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:

https://dev.twitter.com/docs/api/1/post/direct_messages/new

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

无戏配角 2025-01-02 10:00:44

我还不知道出了什么问题,但我可以使用一个名为 tweetsharp 的开源项目让它工作。您可以下载它并查看有效的代码:

Tweet Sharp

这里是一个代码示例

    var service = new TwitterService(consumerKey, consumerSecret, accessToken, accessTokenSecret);
var user = service.VerifyCredentials();
var result = service.SendDirectMessage(recipient, message);

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

    var service = new TwitterService(consumerKey, consumerSecret, accessToken, accessTokenSecret);
var user = service.VerifyCredentials();
var result = service.SendDirectMessage(recipient, message);
往事随风而去 2025-01-02 10:00:44

您是否检查过您是否正在关注消息收件人以及他们是否正在关注您?在您可以向某人发送 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文