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 can drop a message and share a link to someone's wall using Facebook graph API. However as if in http://www.facebook.com/permalink.php?story_fbid=114961875194024&id=7901103 , I want the names as a link. How can I achieve this? Thanks.

share|improve this question
You want the users names? – Neil Knight Mar 24 '11 at 15:36
I want to show every name in users friend list as links, when you click them it takes you to their profile – Cihan Yakar Mar 24 '11 at 17:51

1 Answer

up vote 2 down vote accepted

First, retrieve your friends like this:

https://graph.facebook.com/me/friends?access_token=2227470867|2.EHCI04eO2X4n4cxQlvnS2Q__.3600.1305194400.0-100001037215362|3ABwjZygEj8OZS2247vzgDoLyr4

Now, you only have to pair the names with their IDs like this:

<a href="http://www.facebook.com/FRIEND_ID">FRIEND_NAME</a>

If you want to make a function that transforms a text with Friends names use regular expressions.

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.