I want to create a timeline where the images of a facebook album appear, I am not getting the images to appear in my activity. I would like to get a code to use where Insert your code here appears. Does anyone know 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();