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 following code to post on a user's wall.

 Bundle params = new Bundle(); 
    params.putString("message", facebookMessage);
    params.putString("link", ComLabelConstants.FACEBOOK_LINK);
    params.putString("name", linkname); 
    params.putString("picture", "http://some link"); 
    params.putString("caption", ComLabelConstants.FACEBOOK_LINK_CAPTION);
    params.putString("description", "This is description"); 
     // displaying facebook dialogs
    mFacebook.dialog(FbookAlertBoxActivity.this, "feed", params,new SampleDialogListener(this, mAsyncRunner)); 

Now, I want to use my own image in drawable folder to post on user's wall and not from any link. Can we do that? anyone have solution for this.

share|improve this question
can you write code for SampleDialogListener as well. Thanks – Piscean Jul 23 '12 at 15:24

1 Answer

up vote 6 down vote accepted

You can't publish an image directly to a feed like you are asking - you can only pass a link to the image.

The only solution is to upload the image to a web server and then pass the URL of the image as the picture parameter.

share|improve this answer
1  
ya mate, I think i have to do something like that. We can't pass an image to the feed URL. Thanks for the response. – RiksAndroid Aug 8 '11 at 6: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.