我正在构建一个使用authlogic的应用程序,需要通过Facebook通过Oauth2框架进行身份验证。我认为使用authlogic_oauth2 gem http://github.com/haraldmartin/authlogic_oauth2这将是一块蛋糕。但是,在运行bundle之后,我的服务器或任何rails生成器都可以工作(如下所述:Server won't start on using authlogic-oauth2)。
我尝试使用robdimarco托管的gem运行bundle install,如下所示:
gem 'authlogic_oauth2', :git => 'git:github.com/robdimarco/authlogic_oauth2.git'
但是这引发了错误:
ssh: connect to host git port 22: Operation timed out
fatal: The remote end hung up unexpectedly
authlogic中是否没有对oauth2的支持?或者我错过了一些明显的东西?
答案 0 :(得分:0)
您需要使用:git => 'git://github.com/robdimarco/authlogic_oauth2.git'
,而不是:git => 'git:github.com/robdimarco/authlogic_oauth2.git'
。
(网址开头的错字。)