I have a GAE app , so I selected :
- Public Access API
- Browser (or should I have selected server)
- *.mysite.appspot.com/*, *.googleapis.com/*, http://localhost:8080/*
I make a api call as :
from lib.googleapiclient.discovery import build
service = build("customsearch", "v1",developerKey="xxxx")
But I get error as:
"There is a per-IP or per-Referer restriction configured on your API key and the request does not match these restrictions. Please use the Google Developers Console to update your API key configuration if request from this IP or referer should be allowed."
what should I do ?