Skip to content

Instantly share code, notes, and snippets.

@vivirenremoto
Created August 25, 2011 02:54
Show Gist options
  • Save vivirenremoto/1169875 to your computer and use it in GitHub Desktop.
Save vivirenremoto/1169875 to your computer and use it in GitHub Desktop.
get avatars from gravatar, facebook, twitter
function getPhotoFacebook( $fb_id ){
return 'http://graph.facebook.com/' . $fb_id . '/picture';
}
function getPhotoGravatar( $email ){
return 'http://www.gravatar.com/avatar/' . md5( $email ) . '?s=50';
}
function getPhotoTwitter( $nick ){
return 'http://api.twitter.com/1/users/profile_image/' . $nick . '.json';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment