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.

*Complete PHP noob here. I'm trying to write simple php that returns a tumblr avatar. Tumblr has an address you can navigate to, to retreve the blog avatar. For example navigating to:

http://api.tumblr.com/v2/blog/david.tumblr.com/avatar/512

leads to this:

http://27.media.tumblr.com/avatar_a963092d964b_512.png

I simply want the .png address as a variable. Here's what I got but it just spits out a big page of strange text.

<?php
$avatar = file_get_contents("{the link above, I can only have two hyperlinks in a post}");
echo $avatar;
?>

I assume the file_get_contents is not what I want to use but I don't know what to use.

share|improve this question

1 Answer

Have you tried:

<?php
$avatar = "http://27.media.tumblr.com/avatar_a963092d964b_512.png";
echo $avatar;
?>
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.