about android login with line
after line login succes, page not auto reload ...
.
because line login redirect page url to auth ...
it's make window.opener
is null
https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Cross-Origin-Opener-Policy
.
so ... ResponseFactory.php ... authenticationComplete not work
window.opener.app.authenticationComplete(%s);
.
I add cookieStore.addEventListener
<script>
cookieStore.addEventListener("change", (event) => {
window.location.reload();
});
</script>
.
then edit ResponseFactory.php (cookieStore.set)
private function makeResponse(array $payload): HtmlResponse
{
$content = sprintf(
'
<script>
window.close();
cookieStore.set({name: "isLogin", value: "yes"});
window.opener.app.authenticationComplete(%s);
</script>
',
json_encode($payload)
);
return new HtmlResponse($content);
}
.
I'm not a programmer, just googled, pieced together the code, if there is a better solution, please let me know
.
change event not support firefox & safari (but they support window.opener)
https://developer.mozilla.org/en-US/docs/Web/API/CookieStore/change_event#browser_compatibility
.
many thanks for IanM