Getting full-size profile picture

后端 未结 7 1927
我寻月下人不归
我寻月下人不归 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:44

    found a way:

    $albums = $facebook->api('/' . $user_id . '/albums');
    foreach($albums['data'] as $album){
        if ($album['name'] == "Profile Pictures"){
            $photos = $facebook->api('/' . $album['id'] . '/photos');
            $profile_pic = $photos['data'][0]['source'];
            break;
        }
    }
    

提交回复
热议问题