"raw": "{\r\n \"correo\": \"tads@gmail.com\",\r\n \"password\": \"654321\"\r\n}"
These fields I need to understand to be able to make a post request
I do not understand this expression
"raw": "{\r\n \"correo\": \"tads@gmail.com\",\r\n \"password\": \"654321\"\r\n}"
These fields I need to understand to be able to make a post request
I do not understand this expression
\r
is the carriage return character.
\n
is the newline character.
raw
in this case includes an escaped JSON as a string.