Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am creating a simple app to get and post some information on any facebook account!

I cant get past logging in and out. ive check out the facebook tutorial website but invain! i have been on the issue for days now.

This is the code that ive written. I need to know where i have messed up. The code builds with no errors but crashes when i click the 'Login' Button.

Ive also copied the LogCat after the code.

package com.thenewboston.travis;

import java.io.FileNotFoundException;
import java.io.IOException;
import java.net.MalformedURLException;

import android.app.Activity;
import android.content.Intent;
import android.content.SharedPreferences;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.TextView;

import com.facebook.android.*;
import com.facebook.android.AsyncFacebookRunner.RequestListener;
import com.facebook.android.Facebook.*;

public class FbExample extends Activity implements OnClickListener {

Facebook facebook = new Facebook("xxxxxxx");
AsyncFacebookRunner mAsyncRunner;
Button login;
TextView logoutResult;
private SharedPreferences mPrefs;

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.fbexample);
    login = (Button) findViewById(R.id.bLogin);
    logoutResult = (TextView) findViewById(R.id.tvLogoutResult);
    login.setOnClickListener(this);
    mPrefs = getPreferences(MODE_PRIVATE);
    String access_token = mPrefs.getString("access_token", null);
    long expires = mPrefs.getLong("access_expires", 0);
    if (access_token != null) {
        facebook.setAccessToken(access_token);
    }
    if (expires != 0) {
        facebook.setAccessExpires(expires);
    }

}

@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
    super.onActivityResult(requestCode, resultCode, data);

    facebook.authorizeCallback(requestCode, resultCode, data);
}

public void onClick(View v) {
    // TODO Auto-generated method stub
    if (v.getId() == R.id.bLogin) {
        if (!facebook.isSessionValid()) {
            facebook.authorize(this, new String[] {}, new DialogListener() {
                public void onComplete(Bundle values) {
                    SharedPreferences.Editor editor = mPrefs.edit();
                    editor.putString("access_token",
                            facebook.getAccessToken());
                    editor.putLong("access_expires",
                            facebook.getAccessExpires());
                    editor.commit();
                    login.setText("Logout");

                }

                public void onFacebookError(FacebookError error) {
                }

                public void onError(DialogError e) {
                }

                public void onCancel() {
                }
            });
        }
        if (facebook.isSessionValid()) {
            mAsyncRunner.logout(this,
                    new RequestListener() {

                        public void onComplete(String response, Object state) {
                            login.setText("Login");
                        }

                        public void onIOException(IOException e,
                                Object state) {
                            String error = e.getMessage();
                            logoutResult.setText(error);

                        }

                        public void onFileNotFoundException(
                                FileNotFoundException e, Object state) {
                            String error = e.getMessage();
                            logoutResult.setText(error);
                        }

                        public void onMalformedURLException(
                                MalformedURLException e, Object state) {
                            String error = e.getMessage();
                            logoutResult.setText(error);
                        }

                        public void onFacebookError(FacebookError e,
                                Object state) {
                            String error = e.getMessage();
                            logoutResult.setText(error);
                        }
                    });

        }
    }

}
}

LogCat

08-02 02:20:26.859: W/dalvikvm(302): threadid=1: thread exiting with uncaught
exception (group=0x4001d800)
08-02 02:20:26.878: E/AndroidRuntime(302): FATAL EXCEPTION: main
08-02 02:20:26.878: E/AndroidRuntime(302): java.lang.NullPointerException
08-02 02:20:26.878: E/AndroidRuntime(302):  at     com.thenewboston.travis.FbExample.onClick(FbExample.java:81)
08-02 02:20:26.878: E/AndroidRuntime(302):  at android.view.View.performClick(View.java:2408)
08-02 02:20:26.878: E/AndroidRuntime(302):  at android.view.View$PerformClick.run(View.java:8816)
08-02 02:20:26.878: E/AndroidRuntime(302):  at android.os.Handler.handleCallback(Handler.java:587)
08-02 02:20:26.878: E/AndroidRuntime(302):  at android.os.Handler.dispatchMessage(Handler.java:92)
08-02 02:20:26.878: E/AndroidRuntime(302):  at android.os.Looper.loop(Looper.java:123)
08-02 02:20:26.878: E/AndroidRuntime(302):  at android.app.ActivityThread.main(ActivityThread.java:4627)
08-02 02:20:26.878: E/AndroidRuntime(302):  at java.lang.reflect.Method.invokeNative(Native Method)
08-02 02:20:26.878: E/AndroidRuntime(302):  at java.lang.reflect.Method.invoke(Method.java:521)
08-02 02:20:26.878: E/AndroidRuntime(302):  at  com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:868)
08-02 02:20:26.878: E/AndroidRuntime(302):  at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:626)
08-02 02:20:26.878: E/AndroidRuntime(302):  at dalvik.system.NativeStart.main(Native Method)
08-02 02:20:29.368: I/Process(302): Sending signal. PID: 302 SIG: 9
share|improve this question
post the LogCat – Nerd Aug 1 '12 at 16:57

2 Answers

up vote 0 down vote accepted

You did not instantiate mAsyncRunner before calling mAsyncRunner.logout()

Can you change the following line:

 AsyncFacebookRunner mAsyncRunner;

to

 AsyncFacebookRunner mAsyncRunner = new AsyncFacebookRunner(facebook);

Please let me know if that helps.

share|improve this answer
I changed the line and the program runs. i press the login button and a facebook dialog comes up saying that 'the app has an error'. i click okay and it asks for my facebook login and password. i put that in and it logs in but displays my facebook home page instead of going back to my activity. <br/> Now when i exit the app and re-run it in my emulator and press the login button, the app crashes! – Shahbaz Masood Aug 2 '12 at 19:44
Please make sure that you've registered your app correctly on developers.facebook.com Refer to this section to make sure that you have it setup correctly: developers.facebook.com/docs/mobile/android/build/#register – Jesse Chen Aug 2 '12 at 20:28

You have a Null pointer exception at line 81. Put a breakpoint and see why it is null.

share|improve this answer
Line 81 is this line<br/> mAsyncRunner.logout(this, new RequestListener() {.........<br/> I copied this code from the facebook android tutorial website. The website code had the function getContext() instead of where i put 'this' as the context. Eclipse gave an error with getContext(). Apparetly such a method does not exist by default. I put in 'this' instead. I also tried with getBaseContext() and getApplicationContext(). These two methods do exist but i still got the same error! – Shahbaz Masood Aug 2 '12 at 0:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.