1

我正在尝试在我的墙上发布一条消息,并希望在这篇文章中一次标记多个用户。我尝试了 FB 帖子页面上的各种选项,但无法做到。可能是我做得不对。任何帮助表示赞赏,这就是我的做法......

NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                               @"Test 2",@"message",
                               @"100004311843201,1039844409", @"to",
                               nil];
[self.appDelegate.facebook requestWithGraphPath:@"me/feed" andParams:params andHttpMethod:@"POST" andDelegate:self];

我也尝试过message_tags,但这似乎也不起作用。

4

3 回答 3

4

您需要使用 Open Graph 来标记带有消息的人。me/feed Graph API 端点不支持此功能。

提及标记 https://developers.facebook.com/docs/technical-guides/opengraph/mention-tagging/

动作标记: https ://developers.facebook.com/docs/technical-guides/opengraph/publish-action/

您可以查看最新的 Facebook SDK for iOS 随附的 Scrumptious 示例应用程序,了解如何执行此操作。

于 2012-12-21T19:16:27.313 回答
2

要在您的 fb 状态中标记朋友..您需要使用 FBFriendPickerViewController 的朋友的“facebook id”和使用 FBPlacePickerViewController 的“place id”。以下代码将为您提供帮助。

NSString *apiPath = nil;

apiPath = @"me/feed";

if(![self.selectedPlaceID isEqualToString:@""]) {

    [params setObject:_selectedPlaceID forKey:@"place"];

}

NSString *tag  = nil;
if(mSelectedFriends != nil){
    for (NSDictionary *user in mSelectedFriends) {
        tag = [[NSString alloc] initWithFormat:@"%@",[user objectForKey:@"id"] ];

        [tags addObject:tag];

    }

    NSString *friendIdsSeparation=[tags componentsJoinedByString:@","];
    NSString *friendIds = [[NSString alloc] initWithFormat:@"[%@]",friendIdsSeparation ];

    [params setObject:friendIds forKey:@"tags"];
}

FBRequest *request = [[[FBRequest alloc] initWithSession:_fbSession graphPath:apiPath parameters:params HTTPMethod:@"POST"] autorelease];

[request startWithCompletionHandler:^(FBRequestConnection *connection, id result, NSError *error) {
    [SVProgressHUD dismiss];

    if (error) {
        NSLog(@"Error ===== %@",error.description);
        if (_delegate != nil) {
            [_delegate facebookConnectFail:error requestType:FBRequestTypePostOnWall];
        }else{
            NSLog(@"Error ===== %@",error.description);
        }


    }else{

        if (_delegate != nil) {
            [_delegate faceboookConnectSuccess:self requestType:FBRequestTypePostOnWall];
        }
    }
于 2013-06-25T10:58:45.863 回答
0

如果您按照关于如何为 iOS 设置 Open Graph 的教程进行操作,那么如果您使用 FriendsPickerController,您可以执行以下操作:

// Create an action
id<FBOpenGraphAction> action = (id<FBOpenGraphAction>)[FBGraphObject graphObject];

//Iterate over selected friends
if ([friendPickerController.selection count] > 0) {
    NSMutableArray *temp = [NSMutableArray new];
    for (id<FBGraphUser> user in self.friendPickerController.selection) {
        NSLog(@"Friend selected: %@", user.name);
        [temp addObject:[NSString stringWithFormat:@"%@", user.id]];
    }
    [action setTags:temp];
}

基本上,您可以在操作的“标签”属性上设置一组朋友的 ID

于 2014-03-29T16:25:19.357 回答