Hello, we’re facing an issue of Facebook API Rate Limit.
Currently, we’re using the Limited Login mode offered by Facebook. However, we have faced a Login Block due to exceeding the API Rate Limit. (The console shows 0% API usage, but the login function itself was blocked.)
We suspect that the API Rate Limit restriction occurred as we called the No1. Call (explained below) with every login request.
Below are the API we use to generate the token :
No 1. “https://www.facebook.com/.well-known/openid-configuration/?paipv=0&eav=AfZSTlXMVscZzAs-iiDCcsj4dUtqj-bgUUn8M317dzB3ROCdknRNik8W3eg2qTZX6D0&_rdr” (to verify the issuer of the token.)
No 2. “https://limited.facebook.com/.well-known/oauth/openid/jwks/” (to bring the public key required for token verification.)
Question: 1. To resolve the Login restriction issue, we have deleted the No 1 API. We are confirming if deleting the API is the most appropriate solution.