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 trying to implement facebook login and wall post in Android, so I created a non-activity class that handles everything. I saw all these examples where they use this method - onActivityResult but I don't know if I have to use it or why it's so important. Code works without it as long as I don't have the facebook app installed on the phone and I wonder if onActivityResult have anything to do with it. PS: I'm pretty sure I generated the hash key corectly. Thank you. :)

import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import android.content.SharedPreferences;
import android.content.SharedPreferences.Editor;
import android.os.AsyncTask;
import android.os.Bundle;
import android.util.Log;
import android.widget.Toast;

import com.facebook.android.DialogError;
import com.facebook.android.Facebook;
import com.facebook.android.Facebook.DialogListener;
import com.facebook.android.FacebookError;
import com.infobest.praiser.R;
import com.infobest.praiser.utils.Constants;

/**
 * Functionality for facebook sharing
 * 
 * @author oana_balaceanu
 * 
 */
public class ShareFacebook
{
    private static final String[] PERMISSIONS = new String[] {"publish_stream"};

    private Facebook facebook;
    private String messageToPost;
    private Context ctx;

    public ShareFacebook(String messageToPost, Context ctx)
    {
        this.messageToPost = messageToPost;
        this.ctx = ctx;

    }

    public boolean saveCredentials(Facebook facebook)
    {
        Editor editor = ctx.getSharedPreferences(Constants.KEY, Context.MODE_PRIVATE).edit();
        editor.putString(Constants.TOKEN, facebook.getAccessToken());
        editor.putLong(Constants.EXPIRES, facebook.getAccessExpires());
        return editor.commit();
    }

    public boolean restoreCredentials(Facebook facebook)
    {
        SharedPreferences sharedPreferences = ctx.getSharedPreferences(Constants.KEY,
            Context.MODE_PRIVATE);
        facebook.setAccessToken(sharedPreferences.getString(Constants.TOKEN, null));
        facebook.setAccessExpires(sharedPreferences.getLong(Constants.EXPIRES, 0));
        return facebook.isSessionValid();
    }

    public void share()
    {
        facebook = new Facebook(Constants.APP_ID);
        restoreCredentials(facebook);

        if (!facebook.isSessionValid())
        {
            loginAndPostToWall();
        }
        else
        {
            postToWall(messageToPost);
        }
    }


    public void loginAndPostToWall()
    {
        facebook.authorize((Activity) ctx, PERMISSIONS,
            (DialogListener) new LoginDialogListener());
    }

    public void postToWall(String message)
    {
        FacebookPoster fp = new FacebookPoster();
        fp.execute(message, null, null);
    }

    private class FacebookPoster extends AsyncTask<String, Object, Object>
    {

        @Override
        protected Object doInBackground(String... message)
        {
            Bundle parameters = new Bundle();
            parameters.putString("message", message[0]);
            parameters.putString("link", ctx.getResources().getString(R.string.rateLink));
            parameters.putString("picture", ctx.getResources().getString(R.string.linkIconPicture));
            try
            {
                facebook.request("me");
                String response = facebook.request("me/feed", parameters, "POST");
                Log.d("Tests", "got response: " + response);
                if (response == null || response.equals("") || response.equals("false"))
                {
                    return ctx.getResources().getString(R.string.facebookError);
                }
                else
                {
                    return ctx.getResources().getString(R.string.facebookSuccess);

                }
            }
            catch (Exception e)
            {
                Log.d("ShareOnFacebook", e.toString());
                return ctx.getResources().getString(R.string.facebookError);
            }
        }

        @Override
        protected void onPostExecute(Object result)
        {

            super.onPostExecute(result);
            showToast(result);
        }


    }


    class LoginDialogListener implements DialogListener
    {
        public void onComplete(Bundle values)
        {
            saveCredentials(facebook);
            if (messageToPost != null)
            {
                postToWall(messageToPost);
            }

        }

        public void onFacebookError(FacebookError error)
        {
            showToast(ctx.getResources().getString(R.string.facebookError));

        }

        public void onError(DialogError error)
        {
            showToast(ctx.getResources().getString(R.string.facebookError));

        }

        public void onCancel()
        {
            showToast(ctx.getResources().getString(R.string.facebookCancel));

        }
    }

    private void showToast(Object message)
    {
        Toast.makeText(ctx, message.toString(), Toast.LENGTH_SHORT).show();
    }


}
share|improve this question
1  
This method you should use only if you want to use Activity for result from other Activity without destruction first – Gorets Oct 3 '12 at 7:19

1 Answer

If you test your app on emulator or smartphone with installed Facebook app, login will fail because of it.

share|improve this answer

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.