According to the current latest version of the Facebook Facebook API API 3.2, for users you can use this general method to get a profile picture: https://graph.facebook.com/v3.2/ enjuser-id ‹/ picture? type = square, which you can visit the user picture documentation here . Possible values for the type parameter in the URL can be small, normal, landscape, large, square
For groups and pages , the profile image is not directly accessible. You must get them using an access token. For groups, you must use a user access token, and for pages you can use both a user access token and a page access token.
Can you get a profile picture of a group or page using a common URL: https://graph.facebook.com/v3.2/ enjuser-id ‹/ picture? access_token = enjaccess-tokencasts & type = square
I hope this is useful for people who are looking for a page image or group profile.
Avtar Gaur Feb 20 '19 at 2:58 p.m. 2019-02-20 14:58
source share