Twitter:哈希标签搜索查询

发布于 2024-10-21 23:06:20 字数 576 浏览 5 评论 0原文

我正在尝试通过给定的主题标签搜索 Twitter 推文。我正在尝试获取正确的 http 查询,但我不知道是哪一个。我尝试了一些,但找不到正确的。

我应该使用 http://api.twitter.com/1/... 链接。

我已经有一个按给定名称正常工作的搜索 http 查询

http://api.twitter.com/1/statuses/user_timeline.json?screen_name=prayforjapan

现在我想按给定的主题标签(例如#prayforjapan)进行搜索

我尝试使用一些标签,但无法找到正确的标签,正如我之前所说。这是我尝试过的一种:

http://api.twitter.com/1/statuses/public_timeline.json?include_entities=true&hashtag=prayforjapan"

有人知道我应该使用哪一种吗?

谢谢!

I am trying to search twitter tweets by a given hashtag. I am trying to get the correct http query, but I have no idea which one. I've tried a few but i can't find the correct one.

I should use the http://api.twitter.com/1/... link.

I already have a search http query by a given name which works correctly

http://api.twitter.com/1/statuses/user_timeline.json?screen_name=prayforjapan

Now I would like to search by a given hashtag (for example #prayforjapan)

I tried using a few, but can't find the correct one as I said before. Here's one I tried:

http://api.twitter.com/1/statuses/public_timeline.json?include_entities=true&hashtag=prayforjapan"

Does anyone know which one I should use?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

神也荒唐 2024-10-28 23:06:20

您只需获取 http://search.twitter.com/search.json?q=%23test 即可获取包含 JSON 格式的 #test 的推文列表,其中 < code>%23test 是 #test URL 编码。

You can simply fetch http://search.twitter.com/search.json?q=%23test to get a list of tweets containing #test in JSON, where %23test is #test URL encoded.

单调的奢华 2024-10-28 23:06:20

仅供现在来此帖子的人使用。当前格式有效

https://api.twitter.com/1.1/search/tweets.json?q=%23test&include_entities=true

Just for people who come this post now. This current format works

https://api.twitter.com/1.1/search/tweets.json?q=%23test&include_entities=true
凝望流年 2024-10-28 23:06:20

我使用 http://search.twitter.com/search.json?q=% 23test 格式如上所示,但最近几周这种格式已停止工作。它返回有效的 JSON,是的,但返回的推文为零,而在 twitter.com 上手动搜索主题标签会显示一个或多个结果。我尝试的每个主题标签都会发生这种情况。还有其他人经历过吗?

编辑:我还注意到,向推文添加超链接会导致它仅显示在我的提要中,而无法显示在站点搜索或 JSON 中。我是 Twitter 新手;我在这里缺少一些基本的东西吗?

I use the http://search.twitter.com/search.json?q=%23test format shown above, but in recent weeks this format has stopped working. It returns valid JSON, yes, but the return has zero tweets while a manual search of the hashtag on twitter.com shows one or more results. This happens with every hashtag I try. Has anyone else experienced this?

Edit: I've also noticed that adding a hyperlink to a tweet causes it to show up only in my feed, while it fails to show in either site search or JSON. I'm a Twitter novice; am I missing something basic here?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文