Single Sign-on on mobile devices
Provide a seamless user experience across multiple products with the single sign-on feature.
authgear.configure({
clientID: CLIENT_ID,
endpoint: ENDPOINT,
shareSessionWithSystemBrowser: true,
});Authgear(
clientId: CLIENT_ID,
endpoint: ENDPOINT,
shareSessionWithSystemBrowser: true,
)new Authgear(
application,
CLIENT_ID,
ENDPOINT,
null, // tokenStorage = default
true // shareSessionWithSystemBrowser = true
);Last updated