如何在php中搜索基于hashtag的转推?

时间:2010-08-18 17:10:56

标签: php twitter

另外,我如何检索s标签搜索的结果,看看谁在php中转发了那条推文。我见过api但没有找到关于hashtag搜索的更多信息。确实找到了其他正常搜索,但我想根据#标签进行搜索。

建议

1 个答案:

答案 0 :(得分:-1)

在搜索标记时只需包含哈希值,即#tagname

确保您还对搜索词进行了urlencode,否则#将被解释为锚点而不是查询字符串的一部分。示例代码:

<?php
$tag = '#apple';
$url = 'http://search.twitter.com/search.atom?q=' . urlencode($tag);
echo $url;
?>

这将输出:

http://search.twitter.com/search.atom?q=%23apple