わかりました。5時間以上経ちましたが、まだどこにも行きません。私がやろうとしているのは、Ruby-Sinatraベースのアプリケーションの1つでomniauth-gihubgemをセットアップすることです。以下は私がまだやったことです。
GemfileにGemsを追加しました(もちろん、bundler updateコマンドを実行しました):
source 'https://rubygems.org'
gem 'sinatra'
gem 'haml'
gem 'shotgun'
gem 'omniauth', :git => 'git://github.com/intridea/omniauth.git'
gem 'omniauth-github', :git => 'git://github.com/intridea/omniauth-github.git'
app.rbファイルの下に次のコードがあります。
#imports
require 'rubygems'
require 'bundler'
require 'sinatra'
require 'omniauth'
require 'omniauth-github'
require 'haml'
require './helpers.rb'
#Configure OmniAuth
use OmniAuth::Builder do
provider :github, ENV['api_key'], ENV['secret'], # Removing the key and secret for security reasons
scope: "user,repo,gist"
end
#Application Settings
set :sessions, true
set :views, 'templates'
#Get Method for Application Root
get '/' do
haml :index
end
#Get/Post Methods For Authentication
%w(get post).each do |method|
send(method, "/auth/:provider/callback") do
env['omniauth.auth']
end
end
Githubアプリケーションの設定は次のとおりです。
URL = http://127.0.0.1:4567
Callback URL = http://127.0.0.1:4567/auth/github/callback
これで、127.0.0.1:4567 / auth / github / callbackにアクセスするたびに、次のエラーが発生します。
I, [2012-07-26T07:05:23.540462 #30458] INFO -- omniauth: (github) Callback phase initiated.
E, [2012-07-26T07:05:23.540700 #30458] ERROR -- omniauth: (github) Authentication failure! invalid_credentials: OmniAuth::Strategies::OAuth2::CallbackError, OmniAuth::Strategies::OAuth2::CallbackError
localhost - - [26/Jul/2012:07:05:23 IST] "GET /auth/github/callback HTTP/1.1" 302 9
- -> /auth/github/callback
localhost - - [26/Jul/2012:07:05:23 IST] "GET /auth/failure?message=invalid_credentials&strategy=github HTTP/1.1" 404 448
- -> /auth/failure?message=invalid_credentials&strategy=github
localhost - - [26/Jul/2012:07:05:23 IST] "GET /favicon.ico HTTP/1.1" 404 447
- -> /favicon.ico
githubに接続しようとしていないようです。すでにログインしていると思ったので、githubからログアウトして、もう一度127.0.0.4567 / auth / github / callbackにアクセスしてみてください。そうです、githubに接続したり情報を送信したりすることすらできません。 。
APIキーとシークレットを確認しましたが、正しいです。何が足りないのかよくわからず、本当に疲れています。どんな助けや提案も大歓迎です。
編集::
さて、エラーを発生させるコードはoauth2.rbで次のようになっていることがわかりました
def callback_phase
if request.params['error'] || request.params['error_reason']
raise CallbackError.new(request.params['error'], request.params['error_description'] || request.params['error_reason'], request.params['error_uri'])
end
if request.params['state'].to_s.empty? || request.params['state'] != session.delete('omniauth.state')
raise CallbackError.new(nil, :csrf_detected)
end
CSRFと関係があると思います。