i have a web application written in Ruby on Rails with a pure frontend in javascript; to authenticate the users, i'm using google open ID (omniauth) in RoR (of course).
Now i'm writing an android application that is able to read and write on the same data of that web application. Users have to login with a google account...what is the best way to achieve that?
I saw openID4Java, but i think is very complicate for what i have to do... i just need the email of the user to complete the login in my web application. Can i access to the email of the google account of the phone?
Thank you