gsoni
gsoni

Reputation: 1146

How to connect a Rails App with Google Plus account and fetch the logged in and connected user's activities

Is there any gem or method through which I can connect to Rails App. And after connecting to Google plus ,users activities can be shown on my app.

Thanks in advance.

Upvotes: 0

Views: 1899

Answers (2)

Devin Young
Devin Young

Reputation: 841

I know this question is old, but I recently wrote a tutorial on authenticating users with Google plus on a Rails app. It doesn't cover profile activities, but it shows the basic idea of getting profile data and connecting it with your back-end. You can extend it further from there.

Here is the link: http://devinyoungweb.com/google-plus-sign-in-with-ruby-on-rails/

Upvotes: 1

Bozhidar Batsov
Bozhidar Batsov

Reputation: 56595

Google provides a RESTful API to access read-only data from Google+ profiles. If it covers your needs you can use it via RESTClient or ActiveResource.

Upvotes: 1

Related Questions