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.

Thanks to stackoverflow, I was able to find a solution to get a profile name and picture based on Facebook ID:

        <?php
        $people = array("4"=>"PISTACHE");
        $json = file_get_contents('https://graph.facebook.com/?ids=4&fields=id,name,picture');
        $json = json_decode($json);
        foreach($json as $key=>$person){
        echo '<div class="fb_bin">';    
        echo '<div class="fb_tit">';
        echo $people[$person->id];
        echo '</div>';
        echo '<div class="fb_img"><img width="32px" height="32px" src="'.$person->picture.'" alt="'.$person->name.'" />';
        echo '</div>';
        echo '<div class="fb_txt">is the favorite flavor of<br />';
        echo '<div class="fb_nam">';
        echo $person->name;     
        echo '</div>';
        echo '</div>';
        echo '</div>';
        }
    ?>

After Facebook's update, it stopped working. And I believe it's due to how the profile's picture is fetch because when I remove:

src="'.$person->picture.'"

It works, but without a picture. Can anyone help me update the above code? Thanks in advance for your help.

share|improve this question
I must add that we were using an array because we are reusing the code to post 10 people "favorites". – Juan Perez Oct 11 '12 at 5:56

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.