0
Hello! My question may seem a little vague, but I didn’t know how to summarize my doubt in a few words. What I want to know is: how does Google Maps validate API_KEY and return the map in the web integration? Basically, the backend and frontend part I can turn around, but how does this feature of Google Maps that validates API_KEY, calls a callback and renders on screen?
I don’t know if you understand the question, but it’s not JS or backend. Basically, what resources/technologies would I need to know/study to be able to create something similar (thinking about technology, not product)? Has something to do with mime-type or something?
You want to create a service where users would need an API_KEY so they could use @Claudio Neto ?
– fernandoandrade
What I need is basically to allow the user to integrate this way:
<div id="test"></div>
<script src="MinhaUrlDoServiço?key=API_KEY"></script>
<script>
 var testeApp = ObjectApp.RenderApplication($('#test'));
</script>
Through my JS url, I would validate API_KEY and return the JS content, so my application could be rendered.– Claudio Neto