I am making an application with the Google Maps API. I want to be able to have one person on a computer, watch what another person has edited to a map. I am thinking of passing information of the map to a Google Fusion Table. The other person will be able to see everything as a layer. I would like for the program to just run from the user's browser and not build a website for it.
To edit the fusion tables, I need to gain access/tokens. I am currently trying to use these there javascript script to accomplish this. ScriptSample.html, oauthWindow.html, and gwt-oauth2.js. This is the working example.
When I run them, I get am error that says the redirect_URI is incorrect. It says the file I use to redirect does not have authority. My first obvious question is: How do I give that file authority to redirect?
In my API console, I have it set up as a client-side web application. Should I change it to an installed application?
currently, my javascript origin is: https://localhost
redirect URI: https://localhost/oauthWindow.html
Thanks