Getting the “real” Facebook profile picture URL from graph API

后端 未结 12 2007
说谎
说谎 2020-12-12 15:25

Facebook graph API tells me I can get a profile picture of a user using

http://graph.facebook.com/517267866/picture?type=large

which works fine. However, whe

12条回答
  •  -上瘾入骨i
    2020-12-12 16:10

    If you want the JSON of a good quality profile picture with the URL you can use that:

    http://graph.facebook.com/517267866/picture?height=1024&redirect=false

    if you just need the picture use it without the parameter redirect:

    http://graph.facebook.com/517267866/picture?height=1024

    517267866 is the profile ID of one of the above examples. Put the facebook id that you need

    I hope that helps

提交回复
热议问题