[Answered ]-Axios POST call doesn't work with JWT token, while GET call works

1👍

It seems like I should’ve added more details into the Axios post call, as it started working after I added those two things into the headers of the post call:

'Accept' : 'application/json', 
'Content-Type': 'application/json'

Leave a comment