如何获取Facebook页面的更大的个人资料图片

时间:2011-05-30 13:16:06

标签: iphone objective-c ios facebook url

我通过网址从Facebook获取图片:http://external.ak.fbcdn.net/safe_image.php?d=d282e1e7c86c9270232f97ddc737df39&w=90&h=90&url=http%3A%2F%2Fi52.tinypic.com%2F2q0ixzl.jpg

现在,我想要一个更大的版本,比如200乘200.是否有一个URL?如果没有,我该如何将此图像转换为更大的尺寸?

4 个答案:

答案 0 :(得分:52)

通常,如果您想收集用户或页面的个人资料图片,图标大小图片的格式为:

http://graph.facebook.com/[page id/profile id]/picture

和大图:

http://graph.facebook.com/[page id/profile id]/picture?type=large

编辑注意事项: 如果存储在Facebook服务器上的图像小于200 * 200尺寸,您可以获得最高分辨率的图像,例如:128 * 160。您可以使用GD库调整大小。

还有一件事

Facebook支持200 * 600px作为个人资料照片的最高分辨率。它将通过保持纵横比来调整图像大小以适应这些尺寸。

*截至2017年2月19日更新*

我们需要使用这种新的网址形式来获取所需的个人资料图片。

http://graph.facebook.com/{profile_id}/picture?width={number‌​}&height={number}

[谢谢https://stackoverflow.com/users/2829128/vay]

答案 1 :(得分:23)

如果你想获得更大的图片,你可以像这样设置你想要的高度和宽度:

http://graph.facebook.com/[page id/profile id]/picture?width=[number]&height=[number]

此处有更多信息和示例:Pictures - Facebook Developers

答案 2 :(得分:6)

这也可行

picture.type(大)

例如

 if ([FBSDKAccessToken currentAccessToken]) {
    [[[FBSDKGraphRequest alloc] initWithGraphPath:@"me" parameters:@{@"fields": @"picture.type(large),name, email"}]
     startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection, id result, NSError *error) {
         if (!error) {
             NSLog(@"fetched user:%@", result);
             NSMutableDictionary *data=[[NSMutableDictionary alloc]init];
             data=result;


             fbId.text=[data valueForKey:@"id"];
             userName.text=[data valueForKey:@"name"];
             _emailFB.text=[data valueForKey:@"email"];



             NSDictionary *dictionary = (NSDictionary *)result;

             NSDictionary *data3 = [dictionary objectForKey:@"picture"];
             NSDictionary *data2 = [data3 objectForKey:@"data"];
             NSString *photoUrl = (NSString *)[data2 objectForKey:@"url"];

             NSLog(@"Photo : %@",photoUrl);


         }
     }];
}

}

答案 3 :(得分:0)

是的,有一种方法可以获得Facebook页面的原始(大部分时间更大)个人资料图片。

实际上答案已经在问题中了。原始图像网址已嵌入save_image网址中。在你的情况下,它是“url = http%3A%2F%2Fi52.tinypic.com%2F2q0ixzl.jpg”,这意味着“http://i52.tinypic.com/2q0ixzl.jpg

就我而言,伦敦的页面是

https://www.facebook.com/pages/London-United-Kingdom/106078429431815?fref=ts

我可以通过搜索关键字伦敦轻松获取其fb对象ID。 我试过使用width和height参数。它们使用用户个人资料图片或用户共享图片,但无法使用公共页面个人资料图片。

https://graph.facebook.com/106078429431815/picture?width=300&height=300  // can’t work

我可以通过跟踪仅180x77

的网址得到它的最大图片
https://graph.facebook.com/106078429431815/picture?type=large

但我可以使用fb graph api获取safe_image.php网址,原始图片网址也在参数'url section

"url": "https://fbexternal-a.akamaihd.net/safe_image.php?d=AQCrtKykRotXBuaS&w=180&h=540&url=http%3A%2F%2Fupload.wikimedia.org%2Fwikipedia%2Fcommons%2Fthumb%2Farchive%2F2%2F21%2F20141005220235%2521City_of_London_skyline_at_dusk.jpg%2F720px-City_of_London_skyline_at_dusk.jpg&fallback=hub_city&prefix=d"

这是我用过的代码。

[FBRequestConnection startWithGraphPath:[NSString stringWithFormat:@"/%@/picture?redirect=false&type=large",[firstCityPage objectForKey:@"id"]]
                    completionHandler:^(
                                        FBRequestConnection *connection,
                                        id result,
                                        NSError *error
                                        ) {

                        NSString *profileImgUrl = [NSString stringWithFormat:@"http://graph.facebook.com/%@/picture?type=large", [firstCityPage objectForKey:@"id"]];

                        if (error==nil) {
                            NSString *fbSaveImgUrl = [[(NSDictionary*)result objectForKey:@"data"] objectForKey:@"url"];

                            NSURLComponents *urlComponents = [NSURLComponents componentsWithURL:[NSURL URLWithString:fbSaveImgUrl]
                                                                        resolvingAgainstBaseURL:NO];

                            for (NSURLQueryItem *queryItem in urlComponents.queryItems) {
                                if ([queryItem.name isEqualToString:@"url"]) {
                                    profileImgUrl = queryItem.value;
                                    break;
                                }
                            }

                        } else {
                            NSLog(@"%@",[error description]);
                        }

                        NSLog(@"url: %@", profileImgUrl);

                        ...
                    }];

但是存在风险。

  1. 不保证外部图片网址将被验证。

  2. Facebook可能会删除safe_image网址中的显式外部网址,或者将来隐藏开发者的safe_image网址。

  3. 使用它需要您自担风险。