我已成功通过IOS7向Google Places API查询类型和关键字搜索。但是,我似乎无法使用“OR”条件来处理关键字.Google文档说要使用管道,但这不起作用。
例如,此搜索字符串有效,搜索cafe和espresso:
NSString * testKeywordSearch = @“https://maps.googleapis.com/maps/api/place/search/json?location=37.787930,-122.4074990&radius=5000&keyword=espresso+cafe&sensor=false&key=mykeyhere;
这不起作用,搜索咖啡馆或浓缩咖啡:
NSString * testKeywordSearch = @“https://maps.googleapis.com/maps/api/place/search/json?location=37.787930,-122.4074990&radius=5000&keyword=espresso|cafe&sensor=false&key=mykeyhere;
该应用程序崩溃: 2014-02-27 18:52:11.663 GooglePlaces [10250:70b] * 由于未捕获的异常'NSInvalidArgumentException'而终止应用程序,原因:'data parameter is nil'
我在这里错过了一些非常简单的东西吗?