1

以下のようにしたいのですが、うまくいきません。

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

私が使用しているfacebook-ios-sdkはこちら

1回のリクエストでそれらをリクエストしたい場合、どうすればいいですか?ありがとう。

次のようなバッチリクエストを使用しました

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";
    }
);
}
)

プロフィール画像が正しい位置にありません。なんで?

4

1 に答える 1

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];
}
于 2012-04-18T16:21:36.317 に答える