PHP的新功能,並發現一個可以從Twitter API中檢索JSON數據並將其回顯出來的可靠代碼。下面是檢索@Guardian的用戶照片(報紙)回聲圖像 - PHP和JSON - Twitter的API
<?php
$data = json_decode(file_get_contents('https://api.twitter.com/1/users/lookup.json?screen_name=guardian'), true);
echo $data[0]['profile_image_url'];
?>
對圖像的JSON數據是PHP代碼:
profile_image_url 「:」 http://a0.twimg.com /profile_images/1857791844/G_twittermain_normal.jpg」
所以,很顯然它呼應的URL(文字),我想輸出的實際圖像,可能有超過它的尺寸控制得如果可能的話。
在此先感謝!
?或者想要保存在您的服務器上前調整 – GBD