onairos
Version:
The Onairos Library is a collection of functions that enable Applications to connect and communicate data with Onairos Identities via User Authorization. Integration for developers is designed to be seamless, simple and effective for all applications
36 lines (33 loc) • 1.11 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.launchOnairosApp = exports.handleDeepLink = void 0;
const launchOnairosApp = async () => {
const nonce = Date.now();
const returnLink = encodeURIComponent(window.location.origin + '/auth/callback');
const onairosUrl = `onairos://authenticate?nonce=${nonce}&callback=${returnLink}&appName=google`;
// Try to open Onairos app
window.location.href = onairosUrl;
// Fallback to app store after timeout
setTimeout(() => {
window.location.href = 'https://apps.apple.com/app/onairos/id123456789';
}, 2500);
};
exports.launchOnairosApp = launchOnairosApp;
const handleDeepLink = () => {
// Listen for return from Onairos app
window.addEventListener('message', event => {
if (event.data?.type === 'ONAIROS_AUTH') {
const {
token,
credentials
} = event.data;
if (token) {
localStorage.setItem('onairosToken', token);
localStorage.setItem('onairosCredentials', JSON.stringify(credentials));
}
}
});
};
exports.handleDeepLink = handleDeepLink;