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 want to save the user's profile picture of facebook to my disk, it is more like scrapping user's profile picture db when they registered first.'

for example here is the url.

https://graph.facebook.com/{id}/picture

i want to save it under a specific directory. also, if there is not picture, i want to download the default placeholder as well, which is GIF. the above url is actually having a placeholder only.

i am beginner in php, please explain me in detail.

share|improve this question
I'm no expert on Facebook's copyright policy, but it might be worth checking if this is allowed within the T&Cs (and/or whether you also need to ask the user). – ChrisW Mar 17 '12 at 17:01

1 Answer

up vote 4 down vote accepted
<?php
$image = file_get_contents('https://graph.facebook.com/100003027438870/picture'); // sets $image to the contents of the url
file_put_contents('/path/image.gif', $image); // places the contents in the file /path/image.gif
?>
share|improve this answer
Thanks a lot, i never thought it is this easy. i was trying to use curl based on suggestions in various forums, but that actually never worked, thanks. i believe loading facebook profile image is legal once user gives permission. – asm234 Mar 18 '12 at 19:06
@noka Please make my answer the accepted one :) – Tyilo Mar 18 '12 at 19:16
@Tylio, i did it. thanks. i did not know community standard since am new to this :) – asm234 Mar 19 '12 at 9:21
@Tylio it used to work well untill now, however it has started failing and says cannot open stream... – asm234 Aug 24 '12 at 16:45
@asm234 You need to make sure that the path to the image exists. For example if you are saving to /pathname/image.gif, make sure that the /pathname exists. – Tyilo Aug 25 '12 at 12:35
show 2 more comments

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.