我實施了一個omniauth策略作爲寶石,但意識到它只是oauth的基本實現。設計的通用omniauth供應商/策略
我在設計中配置。 RB是這樣的:
config.omniauth :mystrategy, 'key', 'secret'
有沒有做到這一點的色器件,而無需創建寶石更簡單的方法,我能不能將其配置在conifg塊像
config.omniauth :mystrategy do |strategy|
strategy.key ='blah'
strategy.authorize_path = 'blah'
end
你能告訴我一個例子或指向正確的方向?我在網上看到的所有東西都是關於將其構建爲策略寶石。