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.
Gravatar (globally recognizable avatar) is a globally accessible avatar storage service, used, in particular, by StackOverflow.
0
votes
2answers
204 views
How to change the default profile picture (in Wordpress) for users who don't have a Gravatar
I want to replace the default "Mystery Man" profile picture with a different picture.
As you know, you can access someone's Facebook profile picture by going to http://graph.facebook.com//picture ...
2
votes
1answer
2k views
how to show facebook and twitter user profile image on my website's comments
I am showing Gravatar's Avatar on my webpage comments
like that
$hash = md5(trim($row['email']));
$default_usr = urlencode('http://localhost/example/images/user-icon.jpg');
...
10
votes
3answers
4k views
Getting a facebook profile picture from an email address
I'm trying to get a user's facebook profile picture based on their email address. Effectively, I want to offer my users the option between using Gravatar for their image, or Facebook. However, the ...