You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let postBody = Body.form({ username: "user", password:"password" });
let res = await client.request({
url: "http://server/primary/auth/",
method: "POST",
body: postBody,
});
the backend get the username with ' "username" ' with double quote sign and password ' "password" ' with double quote sign
how to remove the sign double quote "?
Reproduction
let postBody = Body.form({ username: "user", password:"password" });
let res = await client.request({
url: "http://server/primary/auth/",
method: "POST",
body: postBody,
});
the backend get the username with ' "username" ' with double quote sign and password ' "password" ' with double quote sign
how to remove the sign double quote "?
Describe the bug
the backend get the username with ' "username" ' with double quote sign and password ' "password" ' with double quote sign
how to remove the sign double quote "?
Reproduction
the backend get the username with ' "username" ' with double quote sign and password ' "password" ' with double quote sign
how to remove the sign double quote "?
Expected behavior
No response
Platform and versions
Stack trace
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: