0
I’m trying to create a timeline where the images of a facebook album appear, I’m not getting the images to appear in my Activity. I would like to get a code to use where it appears Insert your code here. Someone knows a solution?
final GraphRequest request = GraphRequest.newGraphPathRequest(
accessToken,
"/id",
new GraphRequest.Callback() {
@Override
public void onCompleted(GraphResponse response) {
// Insert your code here
}
});
Bundle parameters = new Bundle();
parameters.putString("fields", "albums{photos{from}}");
request.setParameters(parameters);
request.executeAsync();
Use the Picasso library, this post can help you http://stackoverflow.com/questions/24273783/android-picasso-library-how-to-add-authentication-headers
– Henrique Luiz
I was able to upload an image using the Picasso library, but I could not implement the code used in this post you sent me, it must be due to lack of knowledge, because I am beginner in this area. For my project I need to upload several images from a facebook page. I’m wanting to upload the images as it happens on Instagram, when opening the screen the images of the page are loaded. Anyway thanks for the help
– Raphael de souza