Thank you for your library and the hard work you put into it, it is very much appreciated. 👍
IMPORTANT:
This repository's issues are reserved for feature requests and bug reports.
Do not submit support questions or request here. Please use stackoverflow instead
Steps to reproduce and a minimal demo(Plunker Example)
What steps should we try in your demo to see the problem?
Just use places-auto-complete in your application.
Current behavior
Works but might not after January 31 2018 due to Google's API Key new restriction. IIRC places-auto-complete is using the Google Places Web Service API to receive the places suggestions when the user types in the linked input.
Expected/desired behavior
Still working passed that date.
Other information
I'm using your places-auto-complete feature and I received a mail from Google:
You are receiving this email because your project is using Places Web Service API with an API Key with HTTP referer restrictions.
Because HTTP referer headers cannot be trusted in a Web Service API, these restrictions do not provide protection from third parties misusing your key. In order to increase security for your API Keys, starting January 31 2018 the Places Web Service API will no longer accept API Keys with HTTP Referer usage restrictions.
[...]
If this key is also used for the Maps Javascript API or Image API:
Generate a new API key for Places API
Set IP restriction to the new API key
Update your application(s) to use the new key for the Places API
If I'm not misunderstanding it means that the call to this API has to been made from the server and no longer from angular. I'm wondering if there is something we could do in your project to ease that transition. Perhaps we could add an option with places-auto-complete to provide a custom url to contact the server that would return the google places objects to display with your component. What do you think?
Thank you for your library and the hard work you put into it, it is very much appreciated. 👍
IMPORTANT:
This repository's issues are reserved for feature requests and bug reports. Do not submit support questions or request here. Please use stackoverflow instead
Steps to reproduce and a minimal demo(Plunker Example)
Just use
places-auto-complete
in your application.Current behavior
places-auto-complete
is using theGoogle Places Web Service API
to receive the places suggestions when the user types in the linked input.Expected/desired behavior
Other information
places-auto-complete
feature and I received a mail from Google:If I'm not misunderstanding it means that the call to this API has to been made from the server and no longer from angular. I'm wondering if there is something we could do in your project to ease that transition. Perhaps we could add an option with
places-auto-complete
to provide a custom url to contact the server that would return the google places objects to display with your component. What do you think?