I am making one application in which I want to browse all the albums of facebook. I used the following tutorial for it.
http://huguesjohnson.com/programming/java/android-fb-album/
But not able to get the single data. I am getting null response from the facebook server.
Can anyone help me to get facebook albums and its photos?
Here is my code.
public class getUserImages extends AsyncTask<Void, Void, Void>
{
@Override
protected Void doInBackground(Void... params)
{
try
{
//invoke the API to get albums
long startTime=System.currentTimeMillis();
RestClient client = new RestClient("https://graph.facebook.com/" + PreferenceData.getUserId(FacebookIntegrationActivity.this) + "/albums?access_token="+mFacebook.getAccessToken());
String albumsJson=client.execute(0);
long endTime=System.currentTimeMillis();
Log.d("==","Time to download albums="+(endTime-startTime)+"ms");
Log.d("==","Album Json="+albumsJson);
}
catch (Exception e)
{
e.printStackTrace();
}
return null;
}
}