I have a problem with the google console API when using google translate through it. When I run the test from my local machine, it works fine, but when I try to run it on my remote test virtual server, it returns this 403 above.
I use Simple API access using the Server key in access to the API console, and my key is configured for both local and IP addresses of the test computer.
debugging:
lynx --dump "checkip.dyndns.org";
- IP mapping with a parameter in the API key setting in the Google API console
curl -v "https://www.googleapis.com/language/translate/v2?q=hello&target=de&source=en&key=MYAPIKEY" { "error": { "errors": [ { "domain": "usageLimits", "reason": "accessNotConfigured", "message": "Access Not Configured" } ], "code": 403, "message": "Access Not Configured" } }
As I said, the same thing works on my local machine. An API key is configured for both IP addresses in the Google API console.
UPDATE: when I used the βBrowser Keyβ attached to the referral URL instead of IP, it works. Therefore, the problem should be somehow in IP, but I can not get there. Any whatsmyip service confirms my IP addresses.
source share