Mismatching redirect URI but not for all users

I have posts locked on my website that can be unlocked only by certain tiers. Some of my users have no problem with this and a few others cannot unlock the content regardless of what browser they try. Here is the message they receive:

{“error”:“invalid_request”,“error_description”:“Mismatching redirect URI.”,“state”:“eyJmaW5hbF9yZWRpcmVjdF91cmkiOiJodHRwczpcL1wvd3d3LmhvcG5vbG9neS5jb21cL2VwaXNvZGUtMi1jb2xsYWJvcmF0aW9uXC8ifQ==”}

Any ideas?

This probably happens because your site provides mixed http:// and https:// urls. So when users start from the correct version, they go through, but when they start from the wrong one, redirect uri mismatch.

You should force https:// by redirecting all http:// requests to https:// versions of the url. That should both fix that issue and also better seo.

1 Like

Thanks I will give that a try.

1 Like