[Solved] what Error in this json file? [closed]


You are missing quotes around the key names…

"name": "Samsung Tab 3",

The main issue here is the formatting in the description. You will get issues with syntax like:

"Samsung Tab 3 is very well "
                 + "Samsung Tab 3 is very well ",

Take a look at JSONLint too, this will help validate your JSON.

0

solved what Error in this json file? [closed]