I am using Google Sign-In on my website. When I click the sign-in button, Google redirects to my callback URL with additional parameters, such as:
sql Kopyala Düzenle =...&scope=email+profile+...&authuser=0&prompt=none However, when the complete URL is used, I receive a 403 Forbidden error. Interestingly, if I remove the extra parameters (like &scope, &authuser, and &prompt) and only leave the code parameter, the redirection works fine.
Even after disabling ModSecurity, the issue persists. I would like to know if there are any restrictions or limits configured in the Apache or PHP settings on the server regarding the length or content of URL query parameters that might be causing this problem.
Could you please help me investigate and resolve this issue?