2012-04-18 47 views
1

我想要像下面这样做,但它不起作用。facebook-ios-sdk请求名称和类型的个人资料图片不起作用

NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:@"first_name,picture?type=normal", @"fields",nil]; 
[facebook requestWithGraphPath:@"me" andParams:params andDelegate:self]; 

我使用的是Facebook的IOS-SDK是here

如果我想requst他们一个要求,那怎么办?谢谢。

我使用的批处理请求等

NSString *jsonRequest1 = @"{ \"method\": \"GET\", \"relative_url\": \"me?fields=first_name\" }"; 
NSString *jsonRequest2 = @"{ \"method\": \"GET\", \"relative_url\": \"me/picture?type=square\" }"; 
NSString *jsonRequestsArray = [NSString stringWithFormat:@"[ %@, %@ ]", jsonRequest1, jsonRequest2]; 
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObject:jsonRequestsArray forKey:@"batch"]; 
[facebookDelegate requestWithGraphPath:@"me" andParams:params andHttpMethod:@"POST" andDelegate:self]; 

和我得到的结果是

({ 
body = "{\"first_name\":\"Eric\",\"id\":\"100003742445201\"}"; 
code = 200; 
headers =  (
      { 
     name = "Access-Control-Allow-Origin"; 
     value = "*"; 
    }, 
      { 
     name = "Cache-Control"; 
     value = "private, no-cache, no-store, must-revalidate"; 
    }, 
      { 
     name = Connection; 
     value = close; 
    }, 
      { 
     name = "Content-Type"; 
     value = "text/javascript; charset=UTF-8"; 
    }, 
      { 
     name = ETag; 
     value = "\"3be1c3dfc20761062712ae899cc7c402062300a7\""; 
    }, 
      { 
     name = Expires; 
     value = "Sat, 01 Jan 2000 00:00:00 GMT"; 
    }, 
      { 
     name = Pragma; 
     value = "no-cache"; 
    } 
);}, 
{ 
body = "<null>"; 
code = 302; 
headers =  (
      { 
     name = "Access-Control-Allow-Origin"; 
     value = "*"; 
    }, 
      { 
     name = "Cache-Control"; 
     value = "private, no-cache, no-store, must-revalidate"; 
    }, 
      { 
     name = Connection; 
     value = close; 
    }, 
      { 
     name = "Content-Type"; 
     value = "image/jpeg"; 
    }, 
      { 
     name = Expires; 
     value = "Sat, 01 Jan 2000 00:00:00 GMT"; 
    }, 
      { 
     name = Location; 
     value = "http://profile.ak.fbcdn.net/hprofile-ak-snc4/573359_100003742445201_1494953237_q.jpg"; 
    }, 
      { 
     name = Pragma; 
     value = "no-cache"; 
    } 
); 
} 
) 

轮廓图像不是在正确的位置。为什么?

+0

配置文件图像位于第2个标题中,并且是第2个调用。在我看来,这是正确的。 – 2012-04-20 16:53:45

回答

0

下面是使用IOS-SDK


https://stackoverflow.com/a/5503010/912623全例子的样品批次。

-(void) prepareMyBatchRequest { 
    NSString *jsonRequest1 = @"{ \"method\": \"GET\", \"relative_url\": \"me?fields=first_name,picture\" }"; 
    NSString *jsonRequest2 = @"{ \"method\": \"GET\", \"relative_url\": \"me\" }"; 
    NSString *jsonRequestsArray = [NSString stringWithFormat:@"[ %@, %@ ]", jsonRequest1, jsonRequest2]; 
    NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObject:jsonRequestsArray forKey:@"batch"]; 
    [facebook requestWithGraphPath:@"me" andParams:params andHttpMethod:@"POST" andDelegate:self]; 
} 
相关问题