Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<meta charset=utf-8>
<script>
fetch("clientId")
.then(function(response) {
return response.text();
})
.then(function(text) {
parent.postMessage({id: text}, "*");
});
</script>
<body style="background-color: red;"></body>