To access the /friends connection you need a valid access token for the current session. This means you can't access this connection for other users
https://developers.facebook.com/docs/reference/api/user/
https://developers.facebook.com/docs/reference/fql/friend/
This means that unless you get a users friends and store them in your database, you won't be able to do this. ( Unless you use longer living access tokens (I say longer living as offline access is being deprecated)
Saying this, I'm not sure if you are allowed to store this information. I know friendslists aren't allowed to be shown to other users so this is potentially dangerous territory on facebook TOS. The privacy policy is here https://developers.facebook.com/policy/ but I think this is something you may need to clarify with Facebook directly as it looks like a slightly grey area
https://graph.facebook.com/me/friends?access_token=goes-herewhich lists me the friends' name and ids but I can not pass the access_token manually as it expires after sometime. So I've usedFB.init() and FB.login()functions to invoke the login window and then log into the facebook account which returns the access_token and then fetch the friends data. – codef0rmer Apr 16 '12 at 18:25