Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
只是没有得到如何通过提供者(facebook等)在成功的身份验证上进行自定义响应(发送或呈现):
handleAuthCallbackError方法具有请求和响应参数,我可以这样做:response.render 或 response.send
但
findOrCreateUser没有响应参数来呈现或发送自定义内容,redirectPath只是进行重定向。
谢谢。
我猜你想听respondToLoginSucceedand respondToRegistrationSucceed。它们都有一个响应参数。
respondToLoginSucceed
respondToRegistrationSucceed
编辑.redirectPath('/yay/login/succeeded');执行此操作的正常方法是在 Express 中以正常方式调用和注册它。
.redirectPath('/yay/login/succeeded');
app.get("/yay/login/suceeded", function (req, res) { // do custom headers });
你想这样做的原因是你有一个可以刷新等的无状态页面,没有任何副作用。