在iOS App中使用Google的place API时遇到错误

时间:2017-08-24 14:28:37

标签: ios objective-c google-places-api

我已在我的iOS应用中实施了Google的地方API,但却随机面对此错误。

  

“自动填充错误操作无法完成.Posks API服务器返回了我们无法理解的响应。如果您认为此错误代表错误,请使用我们社区和支持页面上的说明提交报告(https://developers.google.com/places/support)。“

这是我的代码:

GMSAutocompleteFilter *filter = [[GMSAutocompleteFilter alloc] init];
filter.type = kGMSPlacesAutocompleteTypeFilterEstablishment;

_placesClient = [GMSPlacesClient sharedClient];

[_placesClient autocompleteQuery:@"elante"
                          bounds:nil
                          filter:filter
                        callback:^(NSArray *results, NSError *error) {
                            if (error != nil) {
                                NSLog(@"Autocomplete error %@", [error localizedDescription]);

                                [self getPlaces];
                                return;
                            }

                            for (GMSAutocompletePrediction* result in results) {
                                NSLog(@"Result '%@' with placeID %@", result.attributedFullText.string, result.placeID);
                            }
                        }];

0 个答案:

没有答案