Retrieve profile picture using Facebook SDK 3.0 for Android

前端 未结 6 1728
Happy的楠姐
Happy的楠姐 2021-02-19 03:24

I\'ve following problem with Facebook SDK 3.0 for Android. I wanna get my (and my friends) profile picture without using their ProfilePictureView widget, so if I use Graph Explo

6条回答
  •  忘掉有多难
    2021-02-19 04:16

    An easier way would be to execute a GET request to graph.facebook.com/USER_ID/picture so you don't have to first request an URL to the picture, and then execute another GET request to download the picture from the given URL.

    Instead of using Request.executeGraphPathRequestAsync, just do a normal GET request to the URL above, e.g. http://graph.facebook.com/4/picture.

提交回复
热议问题