我有以下代碼將顯示我的網頁上用戶的最新推文。來自包含Hashtag的用戶的最新推文
<div id="last-tweet" class="grid_12">
<p><b>@user: </b> <?php
$username='username'; // set user name
$format='json'; // set format
$tweet=json_decode(file_get_contents("http://api.twitter.com/1/statuses/user_timeline/{$username}.{$format}")); // get tweets and decode them into a variable
echo $tweet[0]->text; // show latest tweet
?></p>
</div>
有誰知道我可以從該用戶與特定主題標籤中添加「#標籤」約束這一所以它只會顯示的鳴叫?
感謝 dvent
嗨Chamilyan - 我可以看到,這看起來像我需要的,但我沒有足夠的經驗知道如何修改我的代碼以反映這一點。你能幫助我更近一步嗎? – dvent
你有沒有解決這個問題的運氣?我可以引導你到控制檯,在那裏你可以測試我描述的Twitter電話。 https://dev.twitter.com/console – Chamilyan