Failed to launch '<URL>' because the scheme does not have a registered handler on logout

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

Hey there!

I know it’s a bit of a different language here but maybe that will do the job:

Thanks for your reply.

I still have the same issue, here’s what I have in Allowed Callback Url, Allowed Logout Url, and Allowed Web Origin :
http://localhost:10000, http://localhost:10000/front, http://localhost:10000/front/index.html, org.reactjs.native.example.atrium://finamic.eu.auth0.com/ios/org.reactjs.native.example.Atrium/callback

I noticed we have the same issue when the user logs out manually.

Issue solved, I was pointing to another Application which didn’t have the allowed logout url ^^

thanks :+1:

1 Like

Wohooo! Glad you have figured it out!

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.