admin管理员组文章数量:1344645
I need to create playwright API request with x-www-form-urlencoded body: Example from postman: working postman request example
I was trying to it that way:
async getNewApiAccesToken({request})
{
const postResponse = await request.post("//token",{
ignoreHTTPSErrors: true,
FormData: {
'client_id': 'xyz',
'client_secret': 'xyz',
'grant_type': 'client_credentials',
'scope': 'api://xyz'
}
})
console.log(await postResponse.json());
return postResponse;
I need to create playwright API request with x-www-form-urlencoded body: Example from postman: working postman request example
I was trying to it that way:
async getNewApiAccesToken({request})
{
const postResponse = await request.post("https://login.microsoftonline.//token",{
ignoreHTTPSErrors: true,
FormData: {
'client_id': 'xyz',
'client_secret': 'xyz',
'grant_type': 'client_credentials',
'scope': 'api://xyz'
}
})
console.log(await postResponse.json());
return postResponse;
But it is not working :/ Could you tell me how can i pose this kind of request in playwright?
Share Improve this question asked Oct 6, 2022 at 10:02 kiwiKiwiKiwikiwiKiwiKiwi 1611 silver badge4 bronze badges2 Answers
Reset to default 9Ok, i found a solution!
async getNewApiAccesToken({request})
{
const formData = new URLSearchParams();
formData.append('grant_type', 'client_credentials');
formData.append('client_secret', '8xyz');
formData.append('client_id', 'xyz');
formData.append('scope', 'api://xyz/.default');
const postResponse = await request.post("https://login.microsoftonline./9xyz/v2.0/token",{
ignoreHTTPSErrors: true,
headers:{
'Content-Type': 'application/x-www-form-urlencoded'
},
data: formData.toString()
})
return postResponse;
};
I think you can try this:
await request.post('https://login.microsoftonline./9xyz/v2.0/token', {
headers:{
'Content-Type': 'application/x-www-form-urlencoded'
},
form: {
grant_type: 'client_credentials',
client_secret: '8xyz',
client_id: 'xyz',
scope: 'api://xyz/.default'
}
});
According to the documentation:
"To send form data to the server use form option. Its value will be encoded into the request body with application/x-www-form-urlencoded encoding"
https://playwright.dev/docs/api/class-apirequestcontext#api-request-context-post
本文标签: javascriptTSplaywrighthow to post api request with xwwwformurlencoded bodyStack Overflow
版权声明:本文标题:javascript - TSplaywright - how to post api request with x-www-form-urlencoded body? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743787739a2538995.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论