5

I have a Ruby app in development that uses the Google API (custom search engine). It's been working great with the Public API access key.

I just upgraded my internet to Uverse and suddently the Google API stopped working. I figured out the issue was the IP address. My Uverse modem uses IPv6.

Unfortunately, Google Developer Public API access keys seem to only accept IPv4 addresses so when I try to add my IPv6 address I get the error message: "The IP address is invalid".

Has anyone been able to get this to work? I would prefer not to implement oAuth if I can avoid it.

1 Answers1

4

Apparently there is a bug with the new Google Developers console. By switching back to the original console, you can edit the allowable IP's and include IPv6 addresses.

  • This is the address of the old Google Developers Console: https://appengine.google.com/ Unfortunately I can't find the 'credentials' option anywhere in the old console... – bart Feb 20 '14 at 07:48
  • 1
    I’m getting really tired of Google’s lack of quality control, in addition to their killing off or letting stagnate products I love. But anyway, thanks for the tip, worked like a charm! – Charlie Gorichanaz Mar 12 '14 at 16:47