Stackedit/static/oauth2/callback.html
2017-08-15 11:43:26 +01:00

33 lines
916 B
HTML

<!DOCTYPE html>
<html>
<body>
<script>
var state;
var accessToken;
var expiresIn;
function parse(search) {
(search || '').slice(1).split('&').forEach(function (param) {
var split = param.split('=');
var key = decodeURIComponent(split.shift());
var value = decodeURIComponent(split.join('='));
if (key === 'state') {
state = value;
} else if (key === 'access_token') {
accessToken = value;
} else if (key === 'expires_in') {
expiresIn = value;
}
});
}
parse(location.search);
parse(location.hash);
var origin = location.protocol + '//' + location.host;
(window.opener || window.parent).postMessage({
state: state,
accessToken: accessToken,
expiresIn: expiresIn
}, origin);
</script>
</body>
</html>