How to grab display picture on Facebook? -
how can grab someone's display image on facebook? want both friends , strangers. thanks.
you can utilize id if know it:
https://graph.facebook.com/[graph-id]/picture
source: https://developers.facebook.com/docs/graph-api/reference/v2.2/user/picture
this works global id - meaning, if know id without app.
if ids app, it´s bit more complicated. "app scoped ids" nowadays, , them friends authorized app too. also, have utilize access token in order create work app scoped ids:
https://graph.facebook.com/[graph-id]/picture?access_token=xxx
you can grab different sizes:
https://graph.facebook.com/[graph-id]/picture?type=square
(type can small, normal, large, square)
...and can specify size directly:
https://graph.facebook.com/[graph-id]/picture?width=121&height=100
facebook facebook-graph-api
No comments:
Post a Comment