{“errorMessages”:["Unexpected character (''' (code 39)): expected a valid value

后端 未结 4 2073
眼角桃花
眼角桃花 2021-02-07 09:32

I found \"Query using POST\" from here.

And tried to use curl command from command like. Installed curl by refering this for windows.

Here is my CURL string:

4条回答
  •  感情败类
    2021-02-07 09:41

    Seems to be an windows issue. Do not use the ' (single-quote) character.

    Instead, use " (double-quote) character for enclosing the string. Then, if you have inner quotes, use """ (3x double-quotes) to escape them.

    Example: "{ """name""":"""Frodo""", """age""":123 }"

提交回复
热议问题