How can I get my friends' tagged_places?
When I send a request to the Graph API like:
me?fields=tagged_places
Works well and returns the data of my "tagged places" to me.
But when I try to get my friends 'tagged places' I got this error message:
"error": {"message": "(# 100) Unknown fields: tagged_places.", "type": "OAuthException", "code": 100
I want to know if it is impossible to get the "tagged_places" of my friends or if there is something wrong.
+3
source to share
2 answers
Note that the tagged_places field is only available on the User object after the user grants the 'user_tagged_places' permission.
This means 1. Your application must ask for the "user_tagged_places" permission during login 2. Your friends must approve this request when they login to the application.
Hope this helps!
0
source to share