Using the FourSquare API in a Rails Application

Does anyone have some good resources that can be helpful when trying to integrate the FourSquare APIs into a Rails application? I am specifically looking for a good tutorial. There seems to be not much. There are some ruby ​​gems, but they are pretty bare bones, and I need a little more hands.

Here is the resource I have found so far:
http://tedgrubb.com/

Stack overflow will not allow me to include the second hyperlink, but you can also use Google: Foursquare ruby ​​gem for another resource.

I haven’t worked with the API much in the past, but I really like Rails. I need to understand a little better where all the shapes fit. The basic guide is what I am looking for.

Thanks.

+4
source share
5 answers

It helps me. This is a working example of a Rails project integrated with FourSquare: https://github.com/pierrevalade/foursquare-rails-examples

+3
source

Quimby is a great ruby ​​api wrapper:

https://github.com/groupme/quimby

It was created by GroupMe.

+1
source

'foursquare2' Ruby wrapper for the foursquare v2 API

Relate to this: https://github.com/mattmueller/foursquare2 , which is good and helped me a lot.

You can get more Foursquare API data as fewer users and with an authenticated user using the “foursquare2” gem.

+1
source

The foursquare-API gem seems to be the only one that supports their API's V2 and seems like the best place to start.

0
source

This is not an answer, but it could be the beginning:

http://stakeventures.com/articles/2009/07/21/consuming-oauth-intelligently-in-rails http://developer.foursquare.com/docs/oauth.html

I had a problem with the implementation of the 4sq rails application.

-1
source

Source: https://habr.com/ru/post/1308567/


All Articles