Hi @snehalvolvoikar29
The message in your first screenshot:
is not coming from us. Also if I inspect the URL of the popup, then it looks like this:
<yourdomain>/openidcallback/facebook?error_code=...
and that isn’t our endpoint. Our endpoints follow rather this pattern:
<yourdomain>/<WordPress default login page URL or the page that you selected as OAuth redirect uri proxy page>/?loginSocial=<provider name> so e.g.:
<yourdomain>/wp-login.php?loginSocial=facebook
So the problem is most likely that you have a third party plugin that has a Facebook integration as well ( or your theme has a Facebook featur ), but their code doesn’t include a proper condition that defines whether they should run their Facebook specific codes or not.
It is a very common problem in many poorly coded plugins that they run their codes whenever they notice a provider specific pattern e.g. the request contains “state” and “code” parameters. But that is completely wrong, as they break other plugins codes. E.g. in Nextend Social Login we idenfity our requests with the “loginSocial” query string, that is pretty unique for our plugin.
To find the plugin that causes the problem you should do a plugin/theme conflict test. So basically you should do the following:
- Disable all plugins except Nextend Social Login
- Change your theme to a WordPress default theme ( like Twenty Twenty-One )
- Try verifying the Facebook provider in Nextend Social Login and see if you can still reproduce the problem
- If you can’t, then you should start enabling the plugins one by one or in small groups and then you should check the verification again. Once the problem starts occurring again, you managed to find the plugin that causes the problem.
Tip: If you know any plugin that has a Facebook specific feature, then you could start the plugin conflict test by disabling only that particular plugin and see if that resolves the problem.
Note: You also opened another topic on this forum about the same problem:
so I mark that as resolved as that is actually a duplicate of this topic with less details.
Best regards,
Laszlo.