1

In our Podio application we are trying to get all the contacts from our website, including their addresses. We need to be able to filter contacts by country and that is only possible by using location fields. The problem we have is that locations are not parsed right away due to some limitations of the Google Maps API involved into the geocoding (which is that only 250 of request per day are allowed). Due to this, only some of the addresses are parsed and have the country extracted properly for filtering.

Now, I tried to implement a caching system that will re-send contacts every day so that the address be re-parsed. But this does not work. I believe this is caused by the fact that sometimes the geocoding API founds more suggestions for an address and doesn't pick any.

I change the code and the location coordinates are solved on our side then sent along with the address. This does not change anything unfortunately.

I can see that Podio is still working on improving their API but we really need a solution for this. How can we handle thousands of clients and their addresses so that we can filter them by country in the application? Using a text field for the country does not work either as text fields are not filterable?

bMain
  • 324
  • 3
  • 11
  • Podio allows to you only 250 geocoding operations? What error do you get when the limit is exceeded? – camelsWriteInCamelCase May 23 '18 at 00:59
  • So is the 250 operations limit the maximum each day or like just a maximum that does not reset each day? I don't get any error. The problem is that the geocoding limits do not reset. My problem is that I expect each day to have another 250 contacts addresses parsed but this does not happen – bMain May 23 '18 at 01:17

1 Answers1

0

According to the official comment:

Currently no way around this unless you build your own integration outside Podio. We might consider to allow you to use your own Google developer key in the future but currently not planned on our side.

On your back end you can use 2,500 free Geocoding API requests per day, calculated as the sum of client-side and server-side queries (Geocoding API Usage Limits). To be able to sort by country, you can import the country from each address into the category field in Podio.

camelsWriteInCamelCase
  • 1,655
  • 1
  • 10
  • 15
  • [200 categories per field](https://help.podio.com/hc/en-us/articles/115000424752-Known-limitations-in-Podio). – camelsWriteInCamelCase May 23 '18 at 13:04
  • I take this as a solution, although would have been great to have Podio taking care of addresses and finding out the countries, instead of adding another field specially for this – bMain May 23 '18 at 22:48
  • I think it will be useful to write a comment to [this post](https://help.podio.com/hc/en-us/community/posts/115001650991-Google-API-Podio-limitation-) that you also need this feature. – camelsWriteInCamelCase May 23 '18 at 22:58