I am building PowerApps application with few requests to Google Maps API. First is generating static maps (it's working correctly). Second thing is building flow to get places near specific location (by type).
My request to API: https://maps.googleapis.com/maps/api/place/nearbysearch/json?location=XXX,YYY&radius=1500&type=restaurant&key=MY_KEY
But in response I got error response:
{
"error_message": "This API project is not authorized to use this API.",
"html_attributions": [],
"results": [],
"status": "REQUEST_DENIED"
}
Problem is that, we set API Key without any restrictions - specific without restrictions about using API interfaces.
Maybe someone resolve similar issue?