如何使用高级参数执行 Twitter 搜索
http://twitter.com/search-advanced
我想执行模仿上述内容的搜索查询屏幕 (例如,我如何找到满足“没有任何单词”的所有推文 标准或只是 #hashtags 标准)。是否可以混合-n- 使用 twitter4j 匹配其中一些字段,目前我能够 仅使用关键字执行简单搜索。
http://twitter.com/search-advanced
I would like to perform search queries which mimic the above screen
(e.g. How do I find all tweets which satisfy "none of the words"
criteria or just #hashtags criteria). Would it be possible to mix-n-
match some of these fields using twitter4j, currently I am able to
perform only simple searches using keywords.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您填写了一些高级搜索页面并实际进行搜索,它将使用构造的查询字符串填充搜索框。例如,如果我将其设置如下:
"word1 word2 word3 OR word4 -word5 from:user1 OR from:user2 @user3"
然后您只需将该字符串粘贴到创建的查询中即可。
If you fill out some of the advanced search page and actually do the search, it'll populate a search box with the constructed query string. For example, if I set it up as follows:
"word1 word2 word3 OR word4 -word5 from:user1 OR from:user2 @user3"
Then you just stick that string into your created query.