0
"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

Roniel López
  • 403
  • 2
  • 10
  • Does this answer your question? [Where can I find a list of escape characters required for my JSON ajax return type?](https://stackoverflow.com/questions/983451/where-can-i-find-a-list-of-escape-characters-required-for-my-json-ajax-return-ty) -- answers describe both `\r` and `\n`. (Note that these aren't unique to JSON -- they have the same meaning in common string types in C, Python, Java, Go, &c as well). – Charles Duffy Jan 06 '23 at 18:39
  • 1
    Also, note that carriage-return+newline is a sequence from the Windows world; in the UNIX world the newline itself stands alone. Regardless, your data would probably work just as well as `"raw": "{\"correo\": \"tads@gmail.com\",\"password\":\"654321\"}"` with no `\r` or `\n` at all. – Charles Duffy Jan 06 '23 at 18:41
  • (Also, they're not regular expressions at all in the first place) – Charles Duffy Jan 06 '23 at 18:41

1 Answers1

1

\r is the carriage return character.
\n is the newline character.

raw in this case includes an escaped JSON as a string.

Mureinik
  • 297,002
  • 52
  • 306
  • 350