Graph call "/me/friends" doesn't contain names if called from a testuser
- by Marc
When I log into Facebook with my account and call the Graph API with /me/friends it returns an array like this:
[
{id: "6868...", name: "John Smith"},
{id: "7531...", name: "Diane Smith"},
...
]
But if I'm logged in with a Facebook testuser and do the same call I get an array like this:
[
{id: "100002927..."},
{id: "100003151..."},
...
]
So I'm missing the name property.
Bug? Or did I some mistake? I'm using the JS SDK, but I think that doesn't matter.