How to convert cURL to postman? -
postman has built-in function convert postman curl code, if want convert curl code postman, how can efficiently? example, curl code following;
curl -v -x post "https://speech.platform.bing.com/recognize?scenarios=smd&appid=d4d52672-91d7-4c74-8ad8-42b1d98141a5&locale=your_locale&device.os=your_device_os&version=3.0&format=json&instanceid=your_instance_id&requestid=your_request_id" -h 'authorization: bearer your_access_token' -h 'content-type: audio/wav; codec="audio/pcm"; samplerate=16000' --data-binary @your_wave_file
thanks , best regards,
by using 'import' functionality followed 'paste raw text'.
explained in official docs here.
for body
selects raw
, expects user paste content of file postman. alternatively can toggle binary
, upload file manually while doing actual request.
Comments
Post a Comment