I have a program that queries google maps service via javascript for geocodes. I need to run that program on a server. I don't know which ports need to be opened to access the google maps URL. The URL that I'm using to access the maps code is:
This URL returns a javascript file which has a piece of code that looks like this:
var loadScriptTime = (new Date).getTime();
getScript("http://maps.gstatic.com/maps-api-v3/api/js/20/10/main.js");
I know that these are HTTP request and that port 80 needs to be opened but as the server is in DMZ, I don't think I can ask the client to open port 80 as that would necessarily enable all the HTTP requests.
Is there a proper list of URLs that I can allow through the firewall so that my program runs? (obviously besides the above two URLs that I mentioned)