Twitter 连接和 Rails

发布于 2024-11-01 03:30:46 字数 508 浏览 1 评论 0原文

我正在阅读本教程: http://blog.dhavalparikh.co.in/2009/06/step-by-step-twitter-oauth-integration-with-rails/

好的,首先重定向到 Twitter 连接页面。当我允许连接时,twitter 会使用代码重定向到 https://twitter.com/oauth/authorize用于连接,但这必须重定向到连接并在我的数据库中创建新用户的操作。

那么这可能是问题所在?我必须如何配置本地主机的 twitter 应用程序回调 url 和应用程序 url。

请我需要这个答案

提前致谢

I am reading this tutorial: http://blog.dhavalparikh.co.in/2009/06/step-by-step-twitter-oauth-integration-with-rails/

OK, first redirect to twitter connect page. When I allow the connection, twitter redirect to https://twitter.com/oauth/authorize with a code for connect but this must redirect to a action which connect and create a new user in my db.

SO which could be the problem? How i must config the twitter application callback url and app url for localhost.

please i need this answer

Thanks in advance

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

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

发布评论

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

评论(2

零度° 2024-11-08 03:30:46

这并不能真正回答你的问题,但这是一个更好的方法。
Omniauth 是 Rails 的一个不错的宝石,可以非常轻松地提供 twitter、facebook 等登录。

Railscasts 的 Ryan Bates对此进行了很好的介绍。

This doesn't really answer your question but is a nicer way to do this.
Omniauth is a nice gem for rails that makes it very easy to offer twitter, facebook etc. login.

A good intro to this was created by Ryan Bates of Railscasts.

↙温凉少女 2024-11-08 03:30:46

问题是:Twitter 通过帖子发送令牌信息。所以我通过参数接收令牌。
oauth 0.4 也有问题。
我正在使用 oauth 0.3.4,因为当 twitter 尝试重定向到回调 url 时,它会以正确的形式工作。

The problem is: Twitter send the token information via post. SO i receive the token by params.
Also there is a problem with oauth 0.4.
I am using oauth 0.3.4 because work in the correct form when twitter try redirect to callback url.

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