Facebookのすべてのアルバムを閲覧したい1つのアプリケーションを作成しています。次のチュートリアルを使用しました。
http://huguesjohnson.com/programming/java/android-fb-album/
しかし、単一のデータを取得することはできません。Facebookサーバーからnull応答があります。
Facebookのアルバムとその写真を入手するのを手伝ってくれる人はいますか?
これが私のコードです。
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;
}
}