0

提及标记:http: //developers.facebook.com/docs/opengraph/mention_tagging/

这是我的代码:

NSURL *requestUrl = [NSURL URLWithString:[NSString stringWithFormat:@"https://graph.facebook.com/me/feed?access_token=%@",self.fbAccessToken]];

...

[self.fbRequest  setPostValue:@"hi, @[555066305] "  forKey:@"message"];

但它不起作用。它只是打印“hi,@ [555066305]”而不是“hi,@somebody”。

4

1 回答 1

1

/feed首先,当标记/提及是 Open Graph 功能而不是提要发布功能时,您将发布。

其次,需要批准操作类型才能在消息部分中使用提及,这在文档中与所有其他要求一起提到

于 2012-08-24T03:51:40.100 回答