Files
op-pedal/vite/public/html/t3k_response.html
T
2026-05-16 06:26:53 -04:00

28 lines
918 B
HTML

<html>
<head>
<meta charset="UTF-8">
<title>T3K Response</title>
<script>
debugger;
window.opener.postMessage(
{
type: "t3k_response",
uri: window.location.href,
storedState: sessionStorage.getItem('t3k_state'),
codeVerifier: sessionStorage.getItem('t3k_code_verifier')
}, '*'
);
function returnResponse() {
window.opener.postMessage(
{
type: "t3k_response",
uri: window.location.href,
storedState: sessionStorage.getItem('t3k_state'),
codeVerifier: sessionStorage.getItem('t3k_code_verifier')
}, '*'
);
}
</script>
</head>
<body style="background: #000000" onload="returnResponse()"></body>
</html>