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.

In my iPhone app I only want to post a message to a Facebook App page.

I have downloaded and implemented the facebook-sdk and I have looked at the demo-app.

What I have read is that It looks like that I have to do three things: - login to facebook (done!) - get an access token - post the message (Is this the same as posting to my own wall)

Is using the graph-api's the right track?

Can anyone help me on the right track.

share|improve this question

1 Answer

may be this solve your problem

- (void) SendTextMsg
{
  NSMutableDictionary *param = [NSMutableDictionary dictionary];
  [facebook dialog:@"feed" andParams:param andDelegate:self];
}
share|improve this answer
I don't know if this is the right way, but i did: requestWithGraphPath:@"...here the appid.../feed" andParams:params andHttpMethod:@"POST" – Aart May 3 '12 at 9:50

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.