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 FBConnect in myapplication, and following is the code for share some message on FB

NSMutableDictionary *params = 
    [NSMutableDictionary dictionaryWithObjectsAndKeys:
     @"Testing Feed Dialog", @"name",
     @"Feed Dialogs are Awesome.", @"caption",
     @"Check out how to use Facebook Dialogs.", @"description",
     @"http://www.example.com/response", @"link",
     @"http://fbrell.com/f8.jpg", @"picture",
     nil];  
    [facebook dialog:@"feed"
           andParams:params
         andDelegate:self];

and i am getting the feed dialog like

enter image description here

This is working fine but I need to customize this window i.e it should have two options "share on own wall" and "share on friend's wall" instead a default share option posting on user own wall. Please Help me out

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.