| 12345678910111213141516171819202122232425 |
- <!doctype html>
- <html>
- <head>
- <meta charset="utf-8">
- <title>Hold on...</title>
- <link rel="stylesheet" type="text/css" href="css/main.css" />
- </head>
- <body>
-
- <script src="js/lib/parseUri.js"></script>
- <script>
-
-
- uri = parseUri(document.location)
- if ( uri.queryKey.oauth_token ) {
- window.opener.app.authorize(uri.queryKey.oauth_token, uri.queryKey.oauth_verifier);
- window.close()
- }
-
-
- </script>
- </body>
- </html>
|