Skip to content

Instantly share code, notes, and snippets.

@blendax78
Created March 15, 2013 15:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save blendax78/5170678 to your computer and use it in GitHub Desktop.
Save blendax78/5170678 to your computer and use it in GitHub Desktop.
Do a quick Facebook search for a particular user.
<?php
function get_fb_info($facebook_name){
// Example: https://graph.facebook.com/digimantra
$data = json_decode(file_get_contents("https://graph.facebook.com/".$facebook_name));
var_dump($data);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment