我知道这个问题有点老了,但我还是会回答。在面对问题并寻求实现与OP打算相同的目标之后,我这样做了
Omniauth
我写了一个中间件并插入到中间件的正上方
class OmniAuthMiddleware
def initialize(app)
@app = app
end
def call(env)
status, headers, body = @app.call(env)
request = Rack::Request.new(env)
if request.xhr? and status == 302 and request.path_info =~ /\/auth\/\w+\z/ and body.class == Rack::BodyProxy
location = headers["Location"]
body = ActionDispatch::Response.new
headers = {'Content-Type'=>'text/javascript; charset=utf-8'}
body.body = ["window.location.href='#{location}'"]
body.headers = headers
status = 200
end
[status,headers,body]
end
end
在这里我如何通过中间件在中间件堆栈中插入
Rails.application.config.middleware.insert_before OmniAuth::Builder,OmniAuthMiddleware
这是我的中间件堆栈的样子
...
...
...
use Warden::Manager
use Rack::Mongoid::Middleware::IdentityMap
use ExceptionNotifier
use OmniAuthMiddleware
use OmniAuth::Builder
run PoasterApi::Application.routes
有了这个,我能够实现我想要的
注意:我没有在 Omniauth 文档中找到任何关于 ajax 的信息,因为我在争分夺秒,因此我实施了这个修复(因为谷歌搜索从来没有给我一个有利的答案)。Omniauth 也有可能支持 ajax 响应,但正如我所说,我在文档中找不到。答案是那些希望实现完全相同的功能但不确定如何在 Omniauth 中实现它的用户。
我仍在查看 Omniauth 以查找他们是否存在通过设置/调整配置直接在 Omniauth 中执行此操作的方法
希望这有帮助