jsonplaceholder
jsonplaceholder copied to clipboard
getting an empty array instead of a value
I have the following json file. { "users": [ { "id": 1, "username": "RGershowitz", "motto": "curabitur et magna placerat tellus" }, { "id": 2, "username": "NMuroski", "motto": "ante nullam dolor sit placerat" } ] }
When I request http://192.168.234.23:3000/users/1 , I get {
"id": 1,
"username": "RGershowitz",
"motto": "curabitur et magna placerat tellus"
}
But when I request http://192.168.234.23:3000/users/1/username , I get { }
I expected RGershowitz as answer instead of {}
u wot m8 xD