Objective c Bing搜索API查询的AFJSONRequestOperation中的参数编码已更改

Objective c Bing搜索API查询的AFJSONRequestOperation中的参数编码已更改,objective-c,afnetworking,bing-api,afjsonrequestoperation,Objective C,Afnetworking,Bing Api,Afjsonrequestoperation,我正在尝试使用Bing搜索API进行图像搜索,但它不能很好地使用unicode字符 NSDictionary *bingParams = [NSDictionary dictionaryWithObjectsAndKeys: @"'image'", @"Sources", [NSString stringWithFormat:@"'%@'",[[searchBar text] stri

我正在尝试使用Bing搜索API进行图像搜索,但它不能很好地使用unicode字符

NSDictionary *bingParams = [NSDictionary dictionaryWithObjectsAndKeys:
                            @"'image'", @"Sources",
                            [NSString stringWithFormat:@"'%@'",[[searchBar text] stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]], @"Query",
                            @"'Size:Medium'", @"ImageFilters",
                            @"json", @"$format",
                            @"50", @"$top",
                            nil];
NSLog(@"%@",[bingParams objectForKey:@"Query"]);

if (!_httpClient) {
    _httpClient = [[AFHTTPClient alloc] initWithBaseURL:[NSURL URLWithString:@"https://api.datamarket.azure.com"]];
    [_httpClient clearAuthorizationHeader];
    [_httpClient setParameterEncoding:AFJSONParameterEncoding];
    [_httpClient setAuthorizationHeaderWithUsername:BING_SEARCH_KEY password:BING_SEARCH_KEY];
}

NSMutableURLRequest *searchRequest = [_httpClient requestWithMethod:@"GET" path:@"/Bing/Search/v1/Composite" parameters:bingParams];
[searchRequest setCachePolicy:NSURLRequestReloadIgnoringCacheData];
[searchRequest setTimeoutInterval:30.0];
AFJSONRequestOperation *searchOperation = [AFJSONRequestOperation JSONRequestOperationWithRequest:searchRequest
                                                                                        success:^(NSURLRequest *request, NSHTTPURLResponse *response, id JSON) {
                                                                                            NSLog(@"%@",JSON);    
                                                                                        }
                                                                                        failure:^(NSURLRequest *request, NSHTTPURLResponse *response, NSError *error, id JSON){
                                                                                            NSLog(@"%@",[error localizedDescription]);
                                                                                        }];
[_httpClient enqueueHTTPRequestOperation:searchOperation];
第一个NSLog打印以下内容:

`%E6%97%A5`
第二个NSLog打印得很长,但我想突出显示一个键值对

"__metadata" =                 {
  type = ExpandableSearchResult;
  uri = "https://api.datamarket.azure.com/Data.ashx/Bing/Search/v1/Composite?ImageFilters='Size:Medium'&Query='\U65e5'&Sources='image'&$skip=0&$top=1";
};
注意
Query='\U65e5'
,它不同于
'%E6%97%A5'

我想知道我做错了什么?或者这是我无法控制的搜索API的问题