Facebook Graph API version has changed to 2.4 yesterday. I have been testing using Graph API Explorer and response to /me/photos
request has changed. It returns only one photo. Is there a way to get all the photos as it was in v2.3 ?
Asked
Active
Viewed 110 times
0

Melike
- 468
- 1
- 7
- 15
1 Answers
0
/me/photos
actually only returns tagged photos.
You need to request me/photos?type=uploaded
to get all the photos you uploaded.

1lastBr3ath
- 334
- 1
- 9
-
Yes, I am aware of their difference. What I am asking is how to get responses from `/me/photos/tagged` and `/me/photos/tagged` as in v2.3. – Melike Jul 09 '15 at 12:44
-
It hasn't changed, you require user_photos permission. That's all. – 1lastBr3ath Jul 09 '15 at 13:06
-
It's working fine for me. You may try revoke all app permissions & grant again using v2.4 instead. – 1lastBr3ath Jul 09 '15 at 13:31
-
Checked that, no difference. Do you use `/me/photos/tagged` or `/me/photos/uploaded` query to request ? – Melike Jul 09 '15 at 13:45
-
Also, do you check using [Graph Api Explorer](https://developers.facebook.com/tools/explorer) ? @1lastBr3ath – Melike Jul 09 '15 at 14:02