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.

how to grab facebook username? using preg_matching?

this is my sample code!

<?php
$page = file_get_contents("http://www.facebook.com/profile.php");
$username = preg_match('/<meta http-equiv=refresh content="0; URL=^[A-Za-z0-9]+$/', $page, $matches) ? $matches[1]: '/djmardagz?_fb_noscript=1';

echo $username;
?>

that's my idea, but it's not working, whew anyone know how to grab facebook username? like for example: you visit my site, after that i got your facebook username....

so how was it done? anyone know? please share :)

share|improve this question
4  
the best way is to use the facebook api. facebook api – Ibu Jun 17 '11 at 4:41
1  
@Ibu: not the best, but the only legal. – zerkms Jun 17 '11 at 4:43
1  
"you visit my site, after that i got your facebook username" -- that doesn't sound insidious at all... – Chris Jun 17 '11 at 5:17
1  
facebook ppl are not crazy to give you username from this code... – Sahal Jun 17 '11 at 6:06

1 Answer

up vote 0 down vote accepted

The only possible way to do that is if you get a referrer back to a url like :

facebook.com/profile.php?id=....

Then, you can quite easily parse the url and get more information on the user. But if you do not have that information, it's not possible to do so.

It's quite easy to then parse the url using curl and reg matching.

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.