Android - get facebook profile picture

后端 未结 28 2342
花落未央
花落未央 2020-12-12 15:13

I don\'t know why, but I am always getting null when I try to get the profile picture of the user. Do I need to set some specific permissions to get access?

Below is

28条回答
  •  情歌与酒
    2020-12-12 15:37

    I used this code and i got the profile picture,

    fbUsrPicURL = "http://graph.facebook.com" + File.separator
                        + String.valueOf(fbUID) + File.separator + "picture?type=large";
    

提交回复
热议问题