Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<script>
fetch("clientId")
.then(function(response) {
return response.text();
})
.then(function(text) {
parent.postMessage({clientId: text}, "*");
});
</script>