If you use "Copy as curl" on a request and the request has data in application/x-www-form-urlencoded, your clipboard will contain a curl command ending with something like --data '"username=admin&password=admin"'. As you can see, the data is encapsulated in extra/unwanted quotes.
If you use "Copy as curl" on a request and the request has data in
application/x-www-form-urlencoded
, your clipboard will contain a curl command ending with something like--data '"username=admin&password=admin"'
. As you can see, the data is encapsulated in extra/unwanted quotes.