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.
感谢分享~
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Spasibo!