Param required error 400

Hello,

I am encountering a problem with token validation in our production environment. When the application is run locally, all requests successfully return a 200 status, and the token is validated correctly on jwt.io, indicating no issues. However, when the application is deployed in the production environment, the token generated by Auth0 is not recognized. This results in a “Param required error” as detailed below:

{
  "data": "Param required error",
  "info": "Param  is required",
  "status_code": 400
}

Consequently, this leads to a 400 status for all subsequent requests due to the token being invalid. as it seems to be related to how tokens are handled or recognized differently in the production environment compared to the local setup.

Thank you !