Getting full-size profile picture

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

    For Angular:

    getUserPicture(userId) {   
    FB.api('/' + userId, {fields: 'picture.width(800).height(800)'}, function(response) {
      console.log('getUserPicture',response);
    });
    }
    

提交回复
热议问题