17 lines
410 B
Cheetah
17 lines
410 B
Cheetah
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Authorization Response</title>
|
|
</head>
|
|
<body>
|
|
<script type="text/javascript">
|
|
(function (window, document) {
|
|
var targetOrigin = {{.targetOrigin}};
|
|
var authorizationResponse = {{.authorizationResponse}};
|
|
var mainWin = window.parent;
|
|
mainWin.postMessage(authorizationResponse, targetOrigin);
|
|
})(this, this.document);
|
|
</script>
|
|
</body>
|
|
</html>
|