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 see some website detect my facebook name and offer a like button so I can the page I'm visiting. Can that be done in php? if not, how then?

Thanks

share|improve this question
A simple 'facebook api' in google would have done the trick. – itachi Apr 24 '12 at 20:28

1 Answer

up vote 2 down vote accepted

Facebook offers widgets for that matter, you can copy paste the code from the Facebook developer site: https://developers.facebook.com/docs/reference/plugins/like/

To get a visitor's name, tou could use Facebook javascript API https://developers.facebook.com/docs/reference/javascript/. You'll need to create an application and the user will need to authorize it before you're able to get any information. There are obvious security reasons why you can't get your visitor's name.

share|improve this answer
so, I MUST use the widget.. no way to detect the visitor name for example: $fbName = $_SERVER['fbName'] ? – Krayyem Althwaini Apr 24 '12 at 19:36
@KrayyemAlthwaini I edited my answer. – Mathieu Imbert Apr 24 '12 at 19:42
"There are obvious security reasons why you can't get your visitor's name" I'm just curious how these websites I visit got my name and picture without even ask me? is it a security whole in fb?? – Krayyem Althwaini Apr 25 '12 at 17:58
@KrayyemAlthwaini Do you have any example I could check out? – Mathieu Imbert Apr 25 '12 at 18:03

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.