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
@sreelakshmi-bruno please have this slotted in our dev sprint for Jan 2025. We want to make some improvements in the Generate Code UI and lets spend some time refining it in Dec.
When the body is "Form URL encoded", the generated curl code should:
--data-urlencode
which does the encoding itself (not supported on old versions of curl)Currently, if we have a field called
field
with a valuea&=b
, the value is sent as-is.With data, the following is sent (obviously incorrect):
field=a&=b
With
--data-urlencode
, the following is sent (correct):field=a%26%3Db
The text was updated successfully, but these errors were encountered: