@mattmazzola/ui
Version:
Administration user interface for creating, training, and testing bots created using Conversation Learner
16 lines • 594 B
HTML
<html>
<head>
<title>Conversation Learner - Redirect</title>
</head>
<body>
<h1>Conversation Learner</h1>
<script>
// Get name of window which was set by the parent to be the unique request key
const requestKey = window.name
// Update corresponding entry with the redirected url which should contain either access token or failure reason in the query parameter / hash
window.localStorage.setItem(requestKey, window.location.href)
window.close()
</script>
</body>
</html>