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.

enter image description here

Update (closer image in the last hour): enter image description here

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:

enter image description here

After choosing one or waiting, they will see it

enter image description here

Here's what happens

enter image description here

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:

+9


source to share


6 answers


Easy to fix.

  1. Go to https://console.developers.google.com/apis/.
  2. Select "Library" - "Google Places API for iOS"
  3. ENABLE (blue button)


API Key is the same as Google Maps APIKey

+9


source


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!

+2


source


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

+1


source


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.

+1


source


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.

enter image description here

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.

enter image description here

enter image description here

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.

enter image description here

enter image description here

+1


source


The same problem occurred in my project as well. and i try all solutions but they don't work for me.

Then I update my module and my google API starts working.

So please try to update the module .

0


source







All Articles