Created
July 10, 2018 08:57
-
-
Save dariayermolova/450e83f03d15b5c8b34f922e386d8825 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pm.sendRequest({ | |
url: '{{your url}}', | |
method: 'POST', | |
header: { | |
'Content-Type': 'multipart/form-data', | |
}, | |
body: { | |
mode: 'formdata', | |
formdata: [ | |
{key: "{{your key}}", value: "{{your value}}", disabled: false, description: {content:"", type:"text/plain"}}, | |
{key: "{{your key}}", value: "{{your value}}", disabled: false, description: {content:"", type:"text/plain"}}, | |
{key: "{{your key}}", value: "{{your value}}", disabled: false, description: {content:"", type:"text/plain"}} | |
] | |
} | |
}, function(err, response) { | |
//сохраняем парметр set-cookie в переменную | |
var refresh = response.headers.get('set-cookie'); | |
//обрезаем для получения куки | |
refresh = refresh.substr(2,36); | |
//сохраняем в переменную окружения | |
pm.environment.set("{{your value}}", refresh); | |
}); | |
tks u, this help me!
Danke viel mals! Ich wußte nicht ganz wie man die formdata aufbauen soll.
感谢分享~
what if I want to upload a file with this same request ,
how can I do it ?
Amazing. Thank you so much.
wicked
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Spasibo!