我想在我贴在墙上的帖子中标记一个朋友,只是想知道需要什么权限...?
我正在使用以下代码...
对于权限..
NSArray *permissions = [[NSArray alloc] initWithObjects:
@"friends_online_presence",
@"read_stream",
@"email",
@"publish_stream",
nil];
[self.appDelegate.facebook authorize:permissions];
[permissions release];
并发布
NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
@"Test 2",@"message",
@"100004311843201,1039844409", @"to",
nil];
[self.appDelegate.facebook requestWithGraphPath:@"me/feed" andParams:params andHttpMethod:@"POST" andDelegate:self];
这已成功发布在墙上,但不包括个人资料 ID...