How can I send a raw payload/request body to Axios?
The endpoint I\'m trying to call expects the request body to just be a string which it\'ll scoop up and use.
It turns out, if I set the Content-Type header to text/plain, it won't convert it to JSON or form data and will send it as I want.
Content-Type
text/plain
axios.post('/my-url', 'my message text', { headers: { 'Content-Type': 'text/plain' } });