I know how to post json and I know how to post file in multipart form in Postman. But how can I do both together. For example:
Here is my jason to post:
{
"title": "Post title yeah",
"body": "My first post body"
}
So how can I post image.jpg
located at /home/me/Desktop
along with the the above json?
UPDATE: Note that I want so send file using JSON, so my question is different from this which is about multipart form sending using Postman.