Hi,
We have an auto-logout feature in our app and when trying to logout the user we have the following error:
Failed to launch ‘URL’ because the scheme does not have a registered handler.
‘org.reactjs.native.example.Atrium://finamic.eu.auth0.com/ios/org.reactjs.native.example.Atrium/callback’ because the scheme does not have a registered handler.
Here’s the code we use to logout the user:
createAuth0Client({
domain: domain,
client_id: clientId,
audience: audience,
useRefreshTokens: true
}).then(function(auth0) {
auth0.logout({
url: window.location.origin //http://localhost:10000
});
});
Apologies, I didn’t found proper tags