我對Firebase頗爲陌生,對Express也稍微有點新,我很難嘗試使用Firebase提供的身份驗證流程。使用Firebase身份驗證和Express身份驗證社交登錄?
我有這條路線,但每次我點擊觸發路由的按鈕,我得到這個錯誤This operation is not supported in the environment this application is running on. "location.protocol" must be http, https or chrome-extension and web storage must be enabled.
我敢肯定,網絡存儲已啓用,但我不是很確定如何解決location.protocol
。我究竟做錯了什麼?
,路線如下:
app.get('/auth/facebook', function(req, res) {
const provider = new firebase.auth.FacebookAuthProvider();
firebase.auth().signInWithPopup(provider)
.catch(err => console.log(err));
});
是你的平板IOS或Android或兩者都不? – turmuka
@turmuka既不是,它是一個節點快車應用程序。 – Zevoxa