6
我使用Bing Api,我的問題是非常基本的。我已經生成了應用程序密鑰,但在控制檯輸出中出現錯誤。Bing Api不爲我工作
我用這對JSON響應
NSString *urlString=[NSString stringWithFormat:@"%@%@%@%@",
@"http://api.search.live.net/json.aspx?Appid=xxxxxxxaxkOatx66TB+CX8qJUIZw=&query=",
text,@"sources=web&web.offset=",offValue];
NSLog(@"%@",urlString);
NSURL *url=[NSURL URLWithString:urlString];
NSData *data=[NSData dataWithContentsOfURL:url];
輸出當我打印respose是
SearchResponse = {
Errors = (
{
Code = 1002;
HelpUrl = "http://msdn.microsoft.com/en-us/library/dd251042.aspx";
Message = "Parameter has invalid value.";
Parameter = "SearchRequest.AppId";
Value = "zKHS8Fm WcwlhCFh8oYWcs VyUYddig=";
}
);
Query = {
SearchTerms = iphone;
};
Version = "2.2";
};
}
這是什麼錯誤背後的原因是什麼?
謝謝所有。
我覺得我的應用程序密鑰存在問題。 (在我的App中有特殊符號+和=) – QueueOverFlow