Formatting JSON Data for Postman -
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
Post a Comment