似乎对于批处理请求,所有参数都作为 relative_url 的一部分进行了转义,如果 omit_response_on_success 设置为 @(false),应用程序将崩溃并显示以下消息:-[__NSCFNumber length]: unrecognized selector
NSDictionary *parameters = [NSMutableDictionary dictionaryWithObjectsAndKeys: @(false), @"omit_response_on_success", nil];
FBRequest *request1 = [FBRequest requestWithGraphPath:self.graphPath
parameters:parameters
HTTPMethod:nil];
[newConnection addRequest:request1 completionHandler:handler batchEntryName:@"entryName"];
如果 graphPath 设置为@"me/home?omit_response_on_success=0"
,则此操作将没有输出。有任何想法吗?