You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I helped myself by modifying the LoopbackRedirectServer.js file:
if (req.url && url.parse(req.url).pathname === callbackPath) {
// Show message after sign in instead of forwarding to another website
res.end('Google sign in successful. You can close this browser window.')
/*
res.writeHead(302, {
Location: successRedirectURL,
});
res.end();
*/
resolve(url.resolve(`http://127.0.0.1:${port}`, req.url));
this._server.close();
}
After sign in, the browser window should redirect to the local server and should be closed automatically.
The text was updated successfully, but these errors were encountered: