Getting full-size profile picture

后端 未结 7 1831
我寻月下人不归
我寻月下人不归 2020-11-30 19:40

Is there anyway to get the full-size profile picture using any facebook api?

http://graph.facebook.com/{ID}/picture?type=large is way to small.

Thanks :)

相关标签:
7条回答
  • 2020-11-30 20:46

    I think I use the simplest method to get the full profile picture. You can get full profile picture or you can set the profile picture dimension yourself:

    $facebook->api(me?fields=picture.width(800).height(800))
    

    You can set width and height as per your need. Though Facebook doesn't return the exact size asked for, It returns the closest dimension picture available with them.

    0 讨论(0)
提交回复
热议问题