blog
blog copied to clipboard
Trying the REST Client extension for VSCode
Trying the REST Client extension for VSCode
https://asp.net-hacker.rocks/2021/03/01/rest-client-vscode.html
Hi Jürgen , How can we post image? Like png or jpeg file
Hi @deekshith-hari That's a good question. I found the answer here by searching the page for "multipart/form-data": https://github.com/Huachao/vscode-restclient
POST https://api.example.com/user/upload
Content-Type: multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW
------WebKitFormBoundary7MA4YWxkTrZu0gW
Content-Disposition: form-data; name="text"
title
------WebKitFormBoundary7MA4YWxkTrZu0gW
Content-Disposition: form-data; name="image"; filename="1.png"
Content-Type: image/png
< ./1.png
------WebKitFormBoundary7MA4YWxkTrZu0gW--
Hope it helps
Thank you @juergenGutsch . It worked. :)
Great :-D