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 auto share a social media user account's from My iPhone application(without dialog box, cancel option , send option).how can I do.

share|improve this question
It's Okay,what is wrong with my question,why are you decreased my point? – Mohanaraj.C Mar 23 at 6:13
3  
@H2CO3 you have no rights to comment on someone else like this. – Abha Mar 23 at 6:18

closed as not constructive by H2CO3, talonmies, rohan-patel, Sajmon, Secator Mar 23 at 8:34

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

up vote 5 down vote accepted

instead of using dialog box, share your stuff using doGraphPost

Use this method to share on fb without opening dialog box

 <FbGraphResponse_Obj> = [fbGraph doGraphPost:@"me/feed" withPostVars:<NSMutableDictionary>];

Find here in detail:

// Invoke fbGraphCallback & prepare fbArray..

// preapare conent to be posted, add following snippet in same function

    NSMutableDictionary *variables = [NSMutableDictionary dictionaryWithCapacity:4];
    [variables setObject:@"Yours content to be shared" forKey:@"message"];


    // share prepared content to fb
    fb_graph_response = [fbGraph doGraphPost:@"me/feed" withPostVars:variables];
    NSLog(@"postMeFeedButtonPressed:  %@", fb_graph_response.htmlResponse);


where fb_graph_response is an instance of FbGraphResponse

Enjoy Programming!!

share|improve this answer
1  
Its works perfectly for me.Thanks! – Vishal Khatri Mar 23 at 7:04
Thank You.. ! :) – Foram Mukund Shah Mar 23 at 7:05

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