So, here's my login function:
public void facebookLogin()
{
shareAppPreferences = new AppPreferences(getApplicationContext());
facebook = ((GlobalVars)getApplicationContext()).facebook;
String access_token = shareAppPreferences.getAccessToken();
long expires = shareAppPreferences.getAccessExpires();
Log.d("MyTag","token:" +access_token);
if(access_token != null) {
facebook.setAccessToken(access_token);
}
if(expires != 0) {
facebook.setAccessExpires(expires);
}
/*
* Only call authorize if the access_token has expired.
*/
if(!facebook.isSessionValid()) {
Log.d("MyTag","In Authorize");
facebook.authorize(this, new String[] {}, new DialogListener() {
@Override
public void onComplete(Bundle values) {
// new AccessKeyTask().execute("http://37.49.226.66/allaroundme/requests.php");
shareAppPreferences.saveAccessToken(facebook.getAccessToken());
Log.d("MyTag","face token: " +facebook.getAccessToken());
shareAppPreferences.saveAccessExpires(facebook.getAccessExpires());
}
@Override
public void onFacebookError(FacebookError error) {}
@Override
public void onError(DialogError e) {}
@Override
public void onCancel() {}
});
}
Intent intent = new Intent(this,MainActivity.class);
Log.d("MyTag", "starting activity");
startActivity(intent);
}
I don't really understand why this code doesn't work, I logged out facebook via the facebook app before trying to use that code. the onComplete() seems not to happen and the access token is always null. but after my first login, I don't have to enter the info. Can anyone help me here?