Twitter通过oauth授权

发布于 2024-11-04 12:55:58 字数 444 浏览 0 评论 0原文

一直在关注这个教程

有没有办法“允许访问”而无需浏览网址: http:// api.twitter.com/oauth/authorize?oauth_token=your_request_token_from_above

有没有办法通过控制台中的 oauth gem 授权用户?

Been following this tutorial.

Is there a way to "allow access" without having to browse to the url: http://api.twitter.com/oauth/authorize?oauth_token=your_request_token_from_above?

Is there a way I can authorize a user via the oauth gem in console?

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

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

发布评论

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

评论(1

╰沐子 2024-11-11 12:55:58

oauth 的实现方式要求您将用户发送到 twitter,以便用户可以向 twitter 提供身份验证详细信息,然后授权您的访问请求(针对您的应用程序)。

如果你想跳过回调 url 等等。您应该查看 xAuth。使用 xAuth,您可以提供用户名和密码,并通过 API 获取令牌,无需回调 URL 等。

这里一些示例说明了如何将 xAuth 与 ruby​​ 结合使用。

The way oauth is implements demands that you send the user to twitter, so that the user could give the authentication details to twitter and then authorize your access request (for your application).

if you want to skip the callback url and all that. You should look at xAuth. With xAuth the you could provide the username and the password and get a token through the API, with no callback URLs or what so ever.

Here some example of how to use xAuth with ruby.

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