>> If you are looking for the functionailty for fetching the google contacts than you can follow the below mentioned instructions. >> Firstly You need to define the google contact and contact groups url in the scope for fetching the google contacts. It will allow our retrieve access token to use google contact api. >> We can define multiple scopes with the google keys : config.omniauth :google_oauth2, client_id, client_secret, { name: 'google', scope: 'email https://www.google.com/m8/feeds/' } >> In the scope I have defined email for ( user's email access access ) and https://www.google.com/m8/feeds/ for ( read/write access to Contacts and Contact Groups ) >> I am assuming you have added the omniauth-google-oauth2 gem and added the functionality of auth login. >> After successful auth login when you ...