Reputation: 1146
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
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
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