Formatting JSON Data for Postman -


i trying send json data post through postman keep getting following error:

enter image description here

when json validated jsonlint result:

error: parse error on line 1:
{ taco: { name: "",
--^
expecting 'string', '}', got 'undefined'

the object keys should strings. valid json:

{
  "taco": {
    "name": "",
    "price": "",
    "photo_url": ""
  }
}


Comments

Popular posts from this blog

jOOQ update returning clause with Oracle -

java - Warning equals/hashCode on @Data annotation lombok with inheritance -

java - BasicPathUsageException: Cannot join to attribute of basic type -