indy
12/26/2022, 6:27 AMrp
12/26/2022, 6:30 AMindy
12/26/2022, 6:53 AMrp
12/26/2022, 8:10 AMsattvikc
12/26/2022, 8:13 AMconst wnd = window.open(authURL, "Login", "width=800,height=600")
const timer = setInterval(function() {
if(wnd.closed) {
clearInterval(timer);
alert('login complete');
// Check for session here
}
}, 1000);
window.location.replace
window.close()
once the signInUp is doneindy
12/26/2022, 8:15 AMsattvikc
12/26/2022, 8:16 AMindy
12/26/2022, 8:16 AMsattvikc
12/26/2022, 8:16 AMindy
12/26/2022, 8:17 AM