In my app i am using 3 services from google: Google Maps API(The Map) Google Directions (To get directions and route from point to another) Google Places (Where i type text and suggested places start to appear on each text change) My question here is, these 3 services use the same key? Do i need to create a key for each service ?
相关问题
- How can I create this custom Bottom Navigation on
- Bottom Navigation View gets Shrink Down
- How to make that the snackbar action button be sho
- Listening to outgoing sms not working android
- How to create Circular view on android wear?
API-keys, unlike the name points out, are not API specific. Instead, they are side-specific (client side or server side).
If all your application is server sided then you can use one server side API key for all your requests. If instead you are simply making an HTML5 web app, without a server, then you can use a browser API key for all your requests.
Please note however, that some APIs also support API-keys. For more information about this you can read the following documentation:
Furthermore, I would like to make a small correction. There is no such thing as a Google Maps API. We do have however a JavaScritp API, which is what I believe you are using :p
Have fun and welcome !