I am stuck on how to retrieve the profile pic from this requests response. This code was provided in the GraphAPI documentation.
Session session = ParseFacebookUtils.getSession();
/* make the API call */
new Request(
session,
"/me/picture",
null,
HttpMethod.GET,
new Request.Callback() {
public void onCompleted(Response response) {
/* handle the result */
}
}
).executeAsync();
What should I be looking to do to retrieve the picture from the response?