我正在尝试在rails 3上安装mogli gem(http://github.com/mmangino/mogli)并遇到配置问题。我对Rails 2有 NO 之前的经验。
对于Rails 2
Add config.gem "mogli" to environment.rb
对于Rails 3,我将以下内容添加到gemfile中。
gem 'mogli'
对于Rails 2,路由
map.resource :oauth, :controller=>"oauth"
map.root :controller=>"oauth"
map.oauth_callback "/oauth/create", :controller=>"oauth", :action=>"create"
对于Rails 3,我添加了
resources :oauth
root :to => "oauth#index"
我不知道如何在Rails 3中表示 map.oauth_callback 。
由于
答案 0 :(得分:5)
尝试:
match "/oauth/create", :to => "oauth#create", :via => "get", :as => "oauth_callback"