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.

Hear is my code. I would like to get picture with api php facebook. The variable $photo returns NULL value.

<?php
    $profile = $facebook->api('/<idfacebook>');
    $photo = $facebook->api('/'.$profile['username'].'/picture');
?>
share|improve this question
what does $profile return? – Roman Jun 15 '12 at 14:44
This might help you... stackoverflow.com/questions/2821061/… – om39a Jun 15 '12 at 14:45

1 Answer

up vote 0 down vote accepted

From stackoverflow.com/questions/2821061

" Simply fetch the data through this url: http://graph.facebook.com/sarfraz.anees/picture Replace sarfraz.anees (my name) with name of the user you want to get the photo of. You can use the PHP's file_get_contents function to read that url and process the retrieved data. Resource:http://developers.facebook.com/docs/api Note: In php.ini, you need to make sure that openssl extension is enabled to use thefile_get_contents function of PHP to read that url. "

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.