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 using the following code.

protected void postPicToWall(String userID){
    try {
        Log.d("FB","Caling");
        Bitmap bi = BitmapFactory.decodeFile("/mnt/sdcard/cmtdd.png");
        ByteArrayOutputStream stream = new ByteArrayOutputStream();
        bi.compress(Bitmap.CompressFormat.PNG, 100, stream);  // where bm is bitmap from Sdcard
        byte[] byteArray = stream.toByteArray();
        String response = facebook.request((userID == null) ? "me" : userID);
        Bundle params = new Bundle();
        params.putString("message", "testing Photo Upload");  
        params.putString("caption", "Testing");
        //params.putString("picture", "http://www.caradvice.pk/wp-content/uploads/2010/11/cars-lightning-mcqueen.jpg");
        params.putByteArray("picture", byteArray);
        response = facebook.request(((userID == null) ? "me" : userID) + "/feed", params, "POST");       

        Log.d("FB"," r ="+response);
        if (response == null || response.equals("") || 
            response.equals("false")) {
            Log.v("FB", "Blank response");
        }
        Log.d("FB","Called"); 
    }catch(Exception e){
        e.printStackTrace();
    }
}

After running this code. The message part in the above code can be seen on Friends Timeline. But There is no picture there. I am using friends_birthday,publish_stream permissions. Can any one solve my issue?

share|improve this question

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.