DEV Community

Discussion on: How to upload an image to strapi

Collapse
 
mauvis profile image
Mauricio Junqueira

Hello Amr, I am with the same problem (Bad Request). But if I use just /upload, without the api, I then get an Unauthorized.

Did you solve this?

Collapse
 
bassel17 profile image
Bassel Kanso

Hello yes the new version of Strapi, the V4 version needs to be api/upload
I will try to update the post to follow the new version

Collapse
 
amrviernes profile image
Amr Viernes

Hi Mauricio, yes i solved this problem by using axios like this

axios({
  method: 'post',
  url: '/api/upload',
  data: formData
});
Enter fullscreen mode Exit fullscreen mode

and don't forget to check upload permission in strapi users panel for public if you want to upload with authenticated users send token in the headers with the post request.