0

authlogicを使用し、Oauth2フレームワークによるFacebook経由の認証が必要なアプリケーションを構築しています。私はこれがauthlogic_oauth2 gem http://github.com/haraldmartin/authlogic_oauth2を使ってケーキになると思っていました。しかし、バンドルを実行した後、私のサーバもレールジェネレータも動作しませんでした(ここで説明するように:Server won't start on using authlogic-oauth2)。authlogicのoauth2サポート:authlogic_oauth2 gemは動作しません/サポートされていません

私は、バンドルそうのようなrobdimarcoによってホストされている宝石でインストールを実行しようとした:

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

もう少し研究によって簡単な解決策: これは、あなたのgemfileに入る正しい宝石です。 'gem" robdimarco_authlogic_oauth2 "、"〜> 1.1.4 "' –

答えて

0

:git => 'git://github.com/robdimarco/authlogic_oauth2.git':git => 'git:github.com/robdimarco/authlogic_oauth2.git'ではなく)を使用する必要があります。

(TypoはURLの冒頭にあります)

関連する問題