像 twitter4j 这样的 twitter Java API 可以与 statusnet 一起使用吗?
我尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我让它与 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?
I have it working with status.net (identi.ca) and basic auth - see https://github.com/pilhuhn/ZwitscherA/blob/master/src/de/bsd/zwitscher/account/LoginActivity.java#L124 and then
https://github.com/pilhuhn/ZwitscherA/blob/master/src/de/bsd/zwitscher/TwitterHelper.java#L232
Did you get a OAuth application id from status.net?
我找到了解决方案:
使用 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.