Moemen
Moemen

Reputation: 404

Callback URL not approved for this client application. Approved callback URLs can be adjusted in your application settings

I need to enable my website users to login to my website using their twitter accounts. My website based on angular 8 and spring boot. While I'm configuring Auth0 and test my twitter app, I get the following error:

{
  "error": "access_denied",
  "error_description": "Callback URL not approved for this client application. Approved callback URLs can be adjusted in your application settings"
}

enter image description here

However I configured my callback_url correctly. So What is the fix of this issue?

Upvotes: 4

Views: 1971

Answers (1)

Vignesh
Vignesh

Reputation: 1063

You are most probably setting the twitter callback URL to your own domain, but in auth0 twitter login, the login callback should happen to auth0.

so change your twitter app callback URL to below,

https://your-tenant.auth0.com/login/callback

your-tenant should be replaced with your actual tenant domain.

More info here https://community.auth0.com/t/twitter-auth-no-longer-works/12291/22

Upvotes: 6

Related Questions