What is the correct way of verifying that a user has put in a facebook profile picture (ie the non-default one), and if so, to retrieve it?
This: how to determine if facebook user has uploaded profile picture or its default? talks about a method, but the author himself says that its a bad method:
public static function hasProfilePicture($fbuid)
{
/* Really stupid method to test if Facebook user has real profile picture
* based on FB returning a gif when you request a large photo.
* Use with care - for every profile there's an outgoing request! */
$r = get_headers("http://graph.facebook.com/$fbuid/picture?type=square");
return !array_search("Content-Type: image/gif",$r);
}