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 want to create a simple app where I log in into my Facebook account and upload photo via my application. I add Facebook sdk in my application project and now i can log in in my Facebook application. for this I wrote following code-

btnFbLogin.setOnClickListener(new View.OnClickListener() 

{

@Override
    public void onClick(View v) 
    {
        loginToFacebook();
    }
});`

function body for loginToFacebook() function is:

    public void loginToFacebook() 
    {
        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);
        }

        if (!facebook.isSessionValid()) 
        {   
            facebook.authorize(this,new String[] { "email", "publish_stream" },new DialogListener() 
            {
                @Override
                public void onCancel() 
                {
                    // Function to handle cancel event
                }

                @Override
                public void onComplete(Bundle values) 
                {
                    SharedPreferences.Editor editor = mPrefs.edit();
                    editor.putString("access_token",facebook.getAccessToken());
                    editor.putLong("access_expires",facebook.getAccessExpires());
                    editor.commit();
                }

                @Override
                public void onError(DialogError error) 
                {
                    // Function to handle error

                }

                @Override
                public void onFacebookError(FacebookError fberror) 
                {
                    // Function to handle Facebook errors

                }

            });
        }
    }

I think everything is fine from this step. Now I want to know how to upload photo. I know how to select picture from SD card. I want tutorial about how to upload picture.

share|improve this question

closed as not a real question by Brian Roach, Ram kiran, Andro Selva, Graham Smith, Alessandro Minoccheri Dec 12 '12 at 7:33

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

Try using the 3.0 beta for Android. In the Request class, you can create a new photo upload request that should be pretty straightforward.

share|improve this answer

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