Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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:

  1. user log in to Facebook on my website. ( use social plugin to create the login page? or what? )
  2. when successfully logged in, get access token of the user.
  3. use https://graph.facebook.com/userid/friends?access_token=... to get user's friends' IDs
  4. 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!!!

share|improve this question

2 Answers

I have made an facebook login and status updating application without facebook api in Java (Netbin).I ussed cockie for log-in and transfering from 1 page to other.

Here is the link ..

http://matrixsust.blogspot.com/2011/04/facebook-log-in-and-status-update-in.html

I think you can create an applet by this.and use it.Sorry i am not familiar with webpage apps.

Or you can take some info from there.

Hope it helps.

share|improve this answer

Facebook Authentication

check out this link.

Facebook Graph API Get Access Token

This is a detailed example of what you want.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.