简体   繁体   中英

iPhone posting to facebook app wall

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.

may be this solve your problem

- (void) SendTextMsg
{
  NSMutableDictionary *param = [NSMutableDictionary dictionary];
  [facebook dialog:@"feed" andParams:param andDelegate:self];
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM