i am using Facebook graph API (php sdk) and i am stuck in a confusing problem.
I am trying to get details of one photo of my friend but the attribute 'tags' not always return with the Facebook result
that's the query:
$this->facebook->api('/'.$id.'/photos?limit=1&fields=id,source,tags');
I have all the application permission its needed:
- access_token
- user_photos
- friends_photos
Note:
- i used this: https://developers.facebook.com/docs/reference/api/photo/
- 'Tags' also not return in Graph API Explorer so its not my code problem.
for some photos i get the tags and for some not. Why tags not always return ?
please help me and thank you!