我尝试使用FBRequestConnection类方法startForPostStatusUpdate:place:tags:completionHandler:
作为
[self dismissViewControllerAnimated:YES completion:nil];
[FBRequestConnection startForPostStatusUpdate:Message
place:nil
tags:[NSArray arrayWithArray:users] completionHandler:^(FBRequestConnection *connection, id result, NSError *error) {
[self showAlert:@"" result:result error:error];
}];
其中users数组包含用户ID。
我收到的错误消息“无法指定没有地点标记的用户标记”。
请告诉我解决方案如何在此方法中添加地点参数。
答案 0 :(得分:3)
[FBRequestConnection startForPostStatusUpdate:@"test message with place and tags" place:@"155021662189" tags:@[@"yourFriendID"] completionHandler:^(FBRequestConnection *connection, id result, NSError *error) {
NSLog(@"startForPostStatusUpdate: %@, error: %@", result, error);
}];
使用155021662189作为地方的空值