when I use Postman tool to test my request GET, everything is working when I check 'application/x-www-form-urlencoded' in Body settings
But when I use Axios, I feel that my settings are not taken into account! Because I have the following error "the user does not exist"
axios({ method: 'get', url: `${baseURL}/api/collect/getSante`, params: { lastName: 'value' }, headers: { 'content-type': 'application/x-www-form-urlencoded;charset=utf-8' } }) I expect json response but I have "the user does not exist"