How do I send POST requests with HTTP header containing newlines in postman? -
when http header contains newlines lf or crlf, postman doesn't send request. gives error:
how send post requests containing newlines in postman? thank you.
from w3 docs,
line breaks, in multi-line text field values, represented cr lf pairs, i.e. `%0d%0a'
also, try using x-www-form-urlencoded format send request. hope helps.
wiki
Comments
Post a Comment