I\'m trying to get a users tagged_places but the array always comes back empty. If I go through the Graph explorer and generate a token then I get the results as ex
EDIT: It was pointed out that read_stream is not what is required, it is whatever the user was tagged in.
Found the answer in the end, the permission: read_stream also seem to be required in order to see a users tagged_places however I did not see this mentioned in the docs anywhere.
I have had a similar issue and it wasnt the read_stream
permission I needed. So I went through permissions in groups testing them out and I figured out what the problem was.
You need to have the permission of the item you were tagged in.
So in my case I was tagged in photos, so I needed user_photos
permission to gain access to user_tagged_places
. You were obviously tagged in someones post on their stream so you needed that permission. It actually creates quite an issue because you need to know how a user was tagged to retrieve their tagged_places.
The way i worked around this was by querying for photos first and then its place.
me?fields=id,name,photos.limit(10){place}