I'm now implementing the Android app to retrieve the user's information on Facebook.
But sometimes I get error "Facebook Error: An active access token must be used to query information about the current user.". Not always.
How can I resolve this problem? If you have some tips and find problems in my code, please let me know.
package uniprofile.android;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import com.facebook.android.AsyncFacebookRunner;
import com.facebook.android.DialogError;
import com.facebook.android.Facebook;
import com.facebook.android.FacebookError;
import com.facebook.android.Util;
import com.facebook.android.Facebook.DialogListener;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.util.Log;
import android.widget.TextView;
public class FacebookData extends Activity {
private Facebook facebook = new Facebook("***********");
private AsyncFacebookRunner mAsyncRunner;
private TextView username;
private TextView tb_gender;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.facebookdata);
username = (TextView) findViewById(R.id.facebook_hello);
tb_gender = (TextView) findViewById(R.id.fb_gender);
SessionStore.restore(facebook, this);
facebook.authorize(this, new DialogListener() {
@Override
public void onComplete(Bundle values) {
mAsyncRunner = new AsyncFacebookRunner(facebook);
mAsyncRunner.request("me", new SampleRequestListener());
}
@Override
public void onFacebookError(FacebookError error) {
}
@Override
public void onError(DialogError e) {
}
@Override
public void onCancel() {
}
});
}
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
facebook.authorizeCallback(requestCode, resultCode, data);
}
public class SampleRequestListener extends BaseRequestListener {
public void onComplete(final String response, final Object state) {
try {
// process the response here: executed in background thread
Log.d("Facebook-Example", "Response: " + response.toString());
JSONObject json = Util.parseJson(response);
final String name = json.getString("name");
final String gender = json.getString("gender");
final JSONArray education = json.getJSONArray("education");
int l = (education != null ? education.length() : 0);
Log.d("Facebook-Friends-Request", "education.length (): " + l);
// for (int i = 0; i < l; i++)
for (int i = 0; i < 10; i++) {
JSONObject o = education.getJSONObject(i);
String id = o.getString("id");
String school = o.getString("name");
// m_item_list.add(new Friend(id, name));
}
// then post the processed result back to the UI thread
// if we do not do this, an runtime exception will be generated
// e.g. "CalledFromWrongThreadException: Only the original
// thread that created a view hierarchy can touch its views."
FacebookData.this.runOnUiThread(new Runnable() {
public void run() {
username.setText("Hello there, " + name + "!");
tb_gender.setText(gender);
}
});
} catch (JSONException e) {
Log.w("Facebook-Example", "JSON Error in response");
} catch (FacebookError e) {
Log.w("Facebook-Example", "Facebook Error: " + e.getMessage());
}
}
}
}