Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
2  
Are you serious using a localhost-based callback URI? It means that the OAuth server should send the response to itself, which is meaningless. You should definitely use some URL accessible from the external network. – Zólyomi István Jul 5 '12 at 9:24
Sorry, I was wrong, I have to correct myself. Callback URIs are used only to redirect your browser with the authorization result, thus a localhost-based callback URI could work in theory. On the other hand, it has serious security issues, making the whole callback URI checking method pointless. As a consequence, you still should provide an externally accessible callback. – Zólyomi István Sep 17 '12 at 9:29

1 Answer

There's no problem with using a localhost url for Dev work - obviously it needs to be changed when it comes to production.

You need to go here: https://developers.google.com/accounts/docs/OAuth2 and then follow the link for the API Console - link's in the Basic Steps section. When you've filled out the new application form you'll be asked to provide a redirect Url. Put in the page you want to go to once access has been granted.

When forming the Google oAuth Url - you need to include the redirect url - it has to be an exact match or you'll have problems. It also needs to be UrlEncoded.

Cheers Simon

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.