2012-01-27 72 views
0

*完成PHP noob這裏。我試圖寫簡單的PHP,返回一個tumblr頭像。 Tumblr有一個地址可以導航到,以撤消博客頭像。例如導航到:Tumblr API Avatar

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

導致這個:

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

我只是想在巴紐地址作爲一個變量。這是我得到的,但它只是吐出一大頁奇怪的文字。

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

我假設file_get_contents不是我想要的,但我不知道要用什麼。

回答

0

你試過:

<?php 
$avatar = "http://27.media.tumblr.com/avatar_a963092d964b_512.png"; 
echo $avatar; 
?> 
0

您可以使用官方PHP Tumblr Client,只是提供您的消費者的關鍵。

// Authenticate via API Key 
$client = new Tumblr\API\Client('yourkeyhere'); 

// Make the request 
$client->getBlogAvatar('yourblog.tumblr.com', 16); //You can choose different size here on the second parameter 

然後這將返回圖像的URL。

您可以參考本作更多的tumblr API阿凡達終點和其他 https://api.tumblr.com/console/calls/blog/avatar