Twitter通过oauth授权
一直在关注这个教程。
有没有办法“允许访问”而无需浏览网址: 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.