| 1234567891011121314151617181920 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>Google Login</title>
- </head>
- <body>
- <script>
- // 从 URL hash 中获取 id_token
- const hash = window.location.hash.substring(1);
- const params = new URLSearchParams(hash);
- const idToken = params.get('id_token');
- if (idToken && window.opener) {
- // 发送 token 给主窗口
- window.opener.postMessage({ type: 'google-login', idToken: idToken }, window.location.origin);
- }
- window.close();
- </script>
- </body>
- </html>
|