index.html 300 B

123456789
  1. <html>
  2. <script type="text/javascript">
  3. function redirect() {
  4. // Append fragment as query string so that server can receive it.
  5. document.location.href = "/token?url_with_fragment=" + encodeURIComponent(document.location.href);
  6. }
  7. </script>
  8. <body onload="redirect()"/>
  9. </html>