Mini Kabibi Habibi
<!-- This file is a copy of https://office.visualstudio.com/OC/_git/MakerCodeEditor?path=%2Fpublic%2Flogin.html&_a=contents&version=GBmaster -->
<!-- This page is used for SSO (single-sign-on), loaded into an invisible page. -->
<!--
As of June 25 2018, it requires a reference to the BETA CDN endpoint.
TODO: https://office.visualstudio.com/OC/_workitems/edit/3394029
As part of the SSO work, check whether the Beta requirement is still a requirement
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<script src="https://appsforoffice.edog.officeapps.live.com/lib/beta/hosted/word.js"></script>
<script>
tryToInitializeSSO();
function tryToInitializeSSO() {
if (typeof OfficeFirstPartyAuth === "undefined") {
setTimeout(tryToInitializeSSO, 500);
return;
}
// Note: if in the future need to debug the auth flow, can turn on
// extra SSO diagnostics using `OfficeFirstPartyAuth.debugging = true;`
OfficeFirstPartyAuth.load();
}
</script>
</head>
<body></body>
</html>