When passing form param to apigee proxy to get access token, if say value of client_id contains white space in beginning or end, it raise desired error.
But in other organisation, those white space get trimmed and validation passes successfully.
curl -X POST -H "Accept: application/json" -H "Cache-Control: no-cache" -H "Content-Type: application/x-www-form-urlencoded" -d 'client_id= abc233&client_secret= abc&code=...&grant_type=authorization_code&redirect_uri=http://httpbin.org/get' "http://.../../token"
Is there any global setting for this kind of behavior?
Thanks,