PhoneGap ChildBrowser and Foursquare

I am developing a telephony application. I want to integrate foursquare into my application. How can I save and get access_token from foursquare to use it in my application?

+4
source share
1 answer

when I quickly go through the documentation on four issues, but it is pretty easy to get a token with javascript and oauth js . Just review the documentation and tutorial .

To save your data inside the application, you can easily do this using localStorage .

If you are using a server side solution to handle your api calls. You can save the token into the session and simply execute an ajax request where you will return the contents of your session. (then use localStorage again ...)

0
source

All Articles