"Post Image data using POSTMAN" "Post Image data using POSTMAN" django django

"Post Image data using POSTMAN"


That's not how you send file on postman. What you did is sending a string which is the path of your image, nothing more.

What you should do is;

  1. After setting request method to POST, click to the 'body' tab.
  2. Select form-data. At first line, you'll see text boxes named key and value. Write 'image' to the key. You'll see value type which is set to 'text' as default. Make it File and upload your file.
  3. Then select 'raw' and paste your json file. Also just next to the binary choice, You'll see 'Text' is clicked. Make it JSON.

form-data section

raw section

You're ready to go.

In your Django view,

from rest_framework.views import APIViewfrom rest_framework.parsers import MultiPartParserfrom rest_framework.decorators import parser_classes@parser_classes((MultiPartParser, ))class UploadFileAndJson(APIView):    def post(self, request, format=None):        thumbnail = request.FILES["file"]        info = json.loads(request.data['info'])        ...        return HttpResponse()


Now you can hover the key input and select "file", which will give you a file selector in the value column:

enter image description here


The accepted answer works if you set the JSON as a key/value pair in the form-data panel (See the image hereunder)

enter image description here

Nevertheless, I am wondering if it is a very clean way to design an API. If it is mandatory for you to upload both image and JSON in a single call maybe it is ok but if you could separate the routes (one for image uploading, the other for JSON body with a proper content-type header), it seems better.