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.

Does anyone know how to post an image to a users timeline with a message?

Right now i am trying this aproach with no luck:

Bundle params = new Bundle();
            String name = preference.getString("user_name", "");
            params.putString("name", name + " achieved a new score in"
                    + " Level: " + pLevel + " Score: " + pRecord + "!"
                    + "Come join play!");
            params.putString("caption", "Block Switcher");
            params.putString("description",
                    "Change to the same color and shape to get through the gate!");
            // params.putString("link", "www.google.com");
            if (b2 == null) {
                Log.e("Bitmap", "Is null");
            }
                             //b2 is my bitmap i am trying to post with the message above
            params.putParcelable("picture", b2);

Does anyone know how to do this?

share|improve this question
You should post files by using DefaultHttpClient and MultipartEntity. There are some tutorials in the internet. – vorrtex Feb 10 at 22:34

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.