Nexus23
Nexus23

Reputation: 6373

Paypal OAuth login returns (invalid client_ID or redirect_uri)

I am trying to implement Paypal Oauth login in my website and keep on getting this error:

We're sorry about that

Looks like this action is not supported. Please return and report this error so that we can support it in the future. (invalid client_ID or redirect_uri)

This is sandbox environment and the redirect_uri I have tried with are:

  1. no url
  2. http://127.0.0.1:5000/signin-paypal
  3. http://localhost:5000/signin-paypal

I have double, tripple check the client_id and client_secret, which match with application setup on Paypal developer desktop.

Absolutely got no clue, why it is failing.

Note: few other providers I have used (google, facebook, linkedin, github amazon) are working perfectly fine with same code.

Upvotes: 1

Views: 4041

Answers (1)

Michail Strokin
Michail Strokin

Reputation: 541

You should make sure you are using exact same Redirect URL as in app settings as well, not just client ID/secret

Upvotes: 0

Related Questions