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 would like to post to user's wall without showing a pop up just like FBWebDialogResult do. I have used the SDK to login and have user permission to publish to wall. Is this possible with using Facebook SDK? or Should I use graph API?

I tried this,

[facebook requestWithGraphPath:@"me/feed" andParams:fbArguments andHttpMethod:@"POST" andDelegate:self];

but it's no longer working in iOS Facebook SDK 3.2

share|improve this question

1 Answer

up vote 2 down vote accepted

You should be able to use:

[FBRequestConnection startWithGraphPath:@"feed" parameters:fbArguments HTTPMethod:@"POST" completionHandler:^(FBRequestConnection *connection, id result, NSError *error) {}];

Found here:

https://developers.facebook.com/docs/reference/ios/3.2/class/FBRequestConnection#startWithGraphPath%3Aparameters%3AHTTPMethod%3AcompletionHandler%3A

share|improve this answer

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.