0

我想使用给定链接中所示的“赞”按钮来赞一个 url。

在底部喜欢按钮是有 点击喜欢按钮将喜欢这个页面并显示在您的 Facebook 个人资料页面中的活动块下,如下所示:

在此处输入图像描述

我们如何在 iPhone App 中喜欢这样的 url。如果用户使用 fb 登录,那么就像如果没有登录然后登录然后喜欢。

提前致谢。

4

2 回答 2

2

你在找这个吗:Facebook 喜欢按钮

于 2013-02-20T06:19:21.767 回答
1

最后,我做到了。

使用图形 API 点赞页面 URL 的代码如下:

    - (IBAction)likepageonFB:(id)sender
{
    [appDelegate openSession];

     NSString *likePage=@"http://www.facebook.com/ipreencekmr";

    NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                                   likePage, @"object",[[NSUserDefaults standardUserDefaults] valueForKey:@"token"],@"access_token",
                                   nil];

    [FBRequestConnection startWithGraphPath:@"/me/og.likes" parameters:params HTTPMethod:@"POST" completionHandler:^(FBRequestConnection *connection, id result, NSError *error) {

        UIAlertView *alert=[[UIAlertView alloc] initWithTitle:nil message:[NSString stringWithFormat:@"liked with id %@",[result valueForKey:@"id"]] delegate:nil cancelButtonTitle:@"Ok" otherButtonTitles:nil];
        [alert show];

        NSLog(@"result is %@",result);
    }];
}

你可以查看这个例子我已经上传了 FBLike 按钮

于 2013-02-21T06:37:14.250 回答