Working with Google contacts API
using Node.js
I am getting all the contacts except images by Google feed API
https://www.google.com/m8/feeds/photos/media/faizy04%40gmail.com/ya29.ZAFTNcQ6sEue40gFqH5h8h91k8LO8Bwvf50NUgQKKmsD5fipWg9XvN5GeHmyref_TK1xJZVrB9Ubuw
For getting contacts I have passed the following scope with passport.js
passport.authenticate('google', { scope : ['profile', 'email','https://www.google.com/m8/feeds'] })
everything is working fine.
Now I want to get all the images of related contacts.
Do I need to pass something else with parameter in scope variable Or Need to send another GET
request for that?