* Reload page after permission grant for popups * Heuristics for detecting that auth flow will use 3p cookies
8 lines
671 B
HTML
8 lines
671 B
HTML
<html>
|
|
<a href="https://accounts.google.com/o/oauth2/auth/xyz?redirect_uri=storagerelayabc" id="auth-button-google">link</a>
|
|
<a href="https://xyz.firebaseapp.com/__/auth/handler?apiKey=abc&authType=signInViaRedirect" id="auth-button-firebase">link</a>
|
|
<a href="https://accounts.google.com/o/oauth2/auth/xyz" id="auth-button-google-without-param">link</a>
|
|
<a href="https://xyz.firebaseapp.com/__/auth/handler?apiKey=abc&authType=signInViaPopup" id="auth-button-firebase-diff-param">link</a>
|
|
<a onclick="window.open('https://accounts.google.com/o/oauth2/auth/xyz?redirect_uri=storagerelayabc', '_blank');" id="auth-button-google-popup">link</a>
|
|
</html>
|