I have authenticated the user via Facebook on my ruby on rails website. I have the access token. The website/app is registered on Facebook. My next step is to show friends of the user, who logged into the app via Facebook , who use the same app. Basically: if I am a user A on an app and I log into the app via Facebook , I should be able to see all my friends who use the app.
I think I can use the: https://graph.facebook.com/me/friends?access_token=....../api/
But that returns friends in this form, I don't don't understand how to use this data to compare the IDs in my website database and then show those who use this app.

Thanks for the help.