I\'m using Axios while programing in ReactJS and I pretend to send a DELETE request to my server.
To do so I need the headers:
headers: { \'Authori
So after a number of tries, I found it working.
Please follow the order sequence it's very important else it won't work
axios.delete(URL, { headers: { Authorization: authorizationToken }, data: { source: source } });