Google Places AutoComplete on iOS - Can't Load Search Results - Try Again
I'm posting this here because I don't know where else to post this. Today our app no ββlonger returns results for the Google Places API. We can see that the request goes through the google developer console, but all phones are returning no results.
Today this number is growing and each of these users are stuck in the login / registration flow of my application.
Update (closer image in the last hour):
Here's an example of the flow of what I see on all the iPhones we test and get the same from our users.
They are looking for their location. They may or may not see some of the autocomplete options:
After choosing one or waiting, they will see it
Here's what happens
Any help is appreciated. Any hints as to who to contact or what I should do is very important.
Does Google have a services page or are other apps experiencing this issue? If so, which applications?
Related SO questions posted recently:
source to share
Easy to fix.
- Go to https://console.developers.google.com/apis/.
- Select "Library" - "Google Places API for iOS"
- ENABLE (blue button)
API Key is the same as Google Maps APIKey
source to share
This was the same problem for me.
Google's new policy requires us to set up a billing account .
Maybe you have something left with your payment setup. Check the status of your billing account, it may be closed. Complete the wait and it won't be a problem anymore. Hope it helps you!
source to share
You may have encountered the API request limit of 1 to / day. To increase it to 150 thousand / Day, you just need to check your credit card. https://developers.google.com/places/ios-api/usage?hl=en_US
source to share
Step 1
Go to https://console.developers.google.com/apis/
Step 2
Select a project and go to library setup. Sorry Google Places and click the Google Places button on the map. Click the "Enable" button.
source to share
A few things to watch.
First, go to https://console.developers.google.com/apis/ and make sure the Google Places API is enabled. Select your project in the upper left corner and then select the library on the left. Then search for "Places API" and enable the API.
Second, make sure you have a billing account enabled. To do this, go to https://console.developers.google.com/billing/ and go to create an account. Make sure your project is also linked to this account. To link your account, go to your project and select the "Checkout" option from the hamburger menu in the upper left corner.
Finally, if you have app restrictions, make sure the bundle ID from your iOS project is associated with the API key you are using. Go to your project in Xcode, click on the General tab and copy the value with "Bundle Identifier". Then go back to https://console.developers.google.com/apis/ and make sure your project is selected. Then go to the "Credentials" tab on the left. Select your key and go to Accept requests from iOS app with one of these bundle IDs and paste the value in the text box below.
If you have API restrictions, make sure Places API is added to the list of available APIs.
Click "Recover Key" at the top and use the new key generated in the "API Key" section of your project. This process can take up to 5 minutes to take effect.
source to share