Get user profile picture by Id

后端 未结 15 2531
闹比i
闹比i 2020-11-27 10:08

I\'m now working on a web application which is mostly based of facebook graph api. I hold some data about users - actually , the possible public data available - such as nam

15条回答
  •  时光说笑
    2020-11-27 10:45

    From the Graph API documentation.

    • /OBJECT_ID/picture returns a redirect to the object's picture (in this case the users)
    • /OBJECT_ID/?fields=picture returns the picture's URL

    Examples:

    uses a HTTP 301 redirect to Zuck's profile picture

    https://graph.facebook.com/4?fields=picture returns the URL itself

提交回复
热议问题