在过去的几天里,我一直在努力让Google商家信息自动填充功能在我的应用上运行,无论我做什么,我总是会遇到REQUEST_DENIED
错误。
我关注了Google的#34;教程"为了实现,启用了Places API,API密钥具有正确的捆绑ID,我还使用浏览器ID进行了测试,但没有成功。
我很确定它与密钥有关。奇怪的是,在Android版本的应用程序中,该服务将与浏览器密钥一起使用。显然,在浏览器上,它也适用于该键。
这是我试验过的两个键:
这是我的实施代码,使用AFNetworking
:
NSURL *url = [NSURL URLWithString:@"https://maps.googleapis.com/maps/api/place/autocomplete/"];
NSDictionary *params = @{@"input" : [input stringByReplacingOccurrencesOfString:@" " withString:@"+"],
@"location" : [NSString stringWithFormat:@"%f,%f", searchCoordinate.latitude, searchCoordinate.longitude],
@"sensor" : @(true),
// @"language" : @"pt_BR",
// @"types" : @"(regions)",
// @"components" : @"components=country:br",
@"key" : GOOGLE_API_KEY};
AFHTTPClient *httpClient = [[AFHTTPClient alloc] initWithBaseURL:url];
[httpClient setParameterEncoding:AFFormURLParameterEncoding];
[httpClient getPath:@"json"
parameters:params
success:^(AFHTTPRequestOperation *operation, id responseObject) {
NSDictionary *JSON = [[NSJSONSerialization JSONObjectWithData:responseObject options:NSJSONReadingAllowFragments error:nil] dictionaryWithoutNulls];
if (completion) {
completion(JSON[@"predictions"]);
}
}
failure:^(AFHTTPRequestOperation *operation, NSError *errorResponse) {
NSLog(@"[HTTPClient Error]: %@ for URL %@", [errorResponse localizedDescription], [[[operation request] URL] path]);
}];
我知道这里有一些像这样的问题,但有些问题已经过时了,并说Places API在Android或iOS上不起作用,显然情况不再如此,因为Google本身在两个平台上发布了示例,如在Places API页面上显示:https://developers.google.com/places/documentation/autocomplete
我目前正在使用的解决方法是Apple的GeoCoding系统,当你输入完整的地址时效果很好,但半打短语很糟糕。这根本不好,我真的很想使用谷歌的API。
答案 0 :(得分:2)
我明白了!
参数sensor
应该收到@"true"
或@"false"
,而不是@(true)
或@(false)
。
对于记录,使用的API密钥确实是浏览器密钥,而不是iOS密钥。
答案 1 :(得分:1)
您应该使用基本网址httpClient
初始化@"https://maps.googleapis.com/"
并获取路径/maps/api/place/autocomplete/json
。基本网址 - 仅限主机,不会占用路径的其他部分,因此在您的情况下,您会收到网址“https://maps.googleapis.com/json”的请求。
答案 2 :(得分:1)
https://maps.googleapis.com/maps/api/geocode/json?address="%@","%@"& sensor = false,yourAddress,your c