因此,我正在进行如下搜索:
r = api.request('search/tweets', {'q':search_query,
'result_type':"recent", 'count':100})
我知道使用Tweepy时可以执行
lang = "en"
,但是我尝试搜索TwitterAPI Docs(没有很好的文档记录),但找不到任何东西。这可能与TwitterAPI有关吗? 最佳答案
Twitter API的细节在TwitterAPI的docs中没有“很好地”记录,因为您打算使用Twitter的docs。 TwitterAPI是API的轻量级包装。
这是您问题的答案:
r = api.request('search/tweets',
{'q':search_query,
'result_type':'recent',
'count':100,
'lang':'en'})