I am fetching albums from a Facebook page using the Graph API (v3). I then process each album individually and request its photos, reaching at the album edge.
/{album-id}?fields=photos{id,images}
Ideally, I would like to find a way to specify a desired size/type (for example thumbnail or width = 640px) for the photos.
Is there any way?
*This question is about the album edge. Answers on questions like: Facebook Graph API : get larger pictures in one request, or Graph API get photo square (100x100) are not a solution to this question.