像 twitter4j 这样的 twitter Java API 可以与 statusnet 一起使用吗?

发布于 2024-10-22 15:37:19 字数 403 浏览 5 评论 0原文

我尝试使用 twitter4j 访问我自己的 statusnet,因为我正在尝试构建一个特殊的客户端。因此我经历了很多考验。我想使用 OAuth 访问 statusnet,这是由 twitter4j 提供的。首先,我尝试通过从自己的“.properties”文件加载 statusnet 适当的属性来使用 twitter4j 登录,以便它适合 OAuth 所需的值。由于这并没有真正发挥作用,我将 twitter4j 的自定义值作为流和令牌更改为 statusnet 的。这也不起作用,因为当我尝试获取 OAuth-RequestToken 时仍然抛出 IllegalStateException。

有没有人有使用像 twitter4j 这样的 twitter Java API(特别是使用 OAuth)为 Statusnet 或另一个 twitter 克隆编写客户端的经验?

I have tried to access my own statusnet with twitter4j, as I'm trying to build a special Client. Therefore I struggled through many trials. I want to access the statusnet with OAuth, which is provided by twitter4j. First I tried to login with twitter4j by loading statusnet appropriate properties from an own ".properties" file so that it fits the values needed by OAuth. As this didn't really worked well, I changed the custom values as streams and tokens of twitter4j into statusnet one's. This didn't work either as I still get an IllegalStateException thrown when I try to get the OAuth-RequestToken.

Has anybody got experience with writing a Client for Statusnet or another twitter-clone in use of a twitter Java API like twitter4j, especcially with OAuth?

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

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

发布评论

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

评论(2

逐鹿 2024-10-29 15:37:19

我让它与 status.net (identi.ca) 和基本身份验证一起使用 - 请参阅 https://github.com/pilhuhn/ZwitscherA/blob/master/src/de/bsd/zwitscher/account/LoginActivity.java#L124 然后
https://github.com/pilhuhn /ZwitscherA/blob/master/src/de/bsd/zwitscher/TwitterHelper.java#L232

您是否从 status.net 获取了 OAuth 应用程序 ID?

紫轩蝶泪 2024-10-29 15:37:19

我找到了解决方案:

使用 Signpost OAuth Api。这是使用单独的提供者 URI 实例化单独的 Oauth 应用程序的最简单方法。您可以在此处查看 Twitter 示例。将 Twitter URI 替换为您的 statusnet URI 并尝试一下,效果非常好且简单。

I have found a solution:

Use Signpost OAuth Api. This is the most simple way to instanciate a individual Oauth Application with individual provider URIs. You can see a example with Twitter here. Replace the Twitter URIs with your statusnet ones and have a try, works really fine and simple.

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