Simulate a specific CURL in PostMan
curl, httprequest, postman
Solution
A simpler approach would be:
- Open POSTMAN
- Click on "import" tab on the upper left side.
- Select the Raw Text option and paste your cURL command.
- Hit import and you will have the command in your Postman builder!
- Click Send to post the command
Problem
I am using Postman to test some Curl requests to an API server. The API developers gave us the curl command, but I can't send it from the Postman. How to make such a request from the Postman? ``` curl -X POST "https://api-server.com/API/index.php/member/signin" -d "{"description":"","phone":"","lastname":"","app_version":"2.6.2","firstname":"","password":"my_pass","city":"","apikey":"213","lang":"fr","platform":"1","email":"email@example.com","pseudo":"example"}" --0xKhTmLbOuNdArY Content-Disposition: form-data; name="userfile"; filename="profil.jpg" Content-Type: image/jpeg Content-Transfer-Encoding: binary <ffd8ffe0 00104a46 49460001 01010048 ... a00fffd9> —0xKhTmLbOuNdArY— ```