postmanlabs / curl-to-postman

Converts curl requests to Postman Collection v2 request objects
Apache License 2.0
65 stars 31 forks source link

handle url encoded body containing `+` character #65

Closed tjenkinson closed 1 year ago

tjenkinson commented 1 year ago

Both + and %20 should be treated as spaces but the + was not being handled, meaning if you imported a curl command into postman postman would then make the request containing a literal + instead of space. Took a while to debug 😆

VShingala commented 1 year ago

@tjenkinson Thanks for the contribution! We'll review the PR and take it forward with next release.

tjenkinson commented 1 year ago

Thanks @VShingala!