I want to build a website that enable facebook user login and then show their friends' profile pictures.
There are so many resources to look up, Javascript SDK, PHP SDK, OAuth 2.0, I'm just confused about how to implement my application in an easy way.
I want to do it this way:
- user log in to Facebook on my website. ( use social plugin to create the login page? or what? )
- when successfully logged in, get access token of the user.
- use https://graph.facebook.com/userid/friends?access_token=... to get user's friends' IDs
- use https://graph.facebook.com/userid/picture to get pictures and then display.
Can anyone tell me is it possible to realize it in this way? Hopefully you can give some specified codes, especially in step (1) and (2).
Thanks very much!!!
