如何通过描述搜索推特用户?

How to search twitter users by their description?

我正在使用 twitter4j,我有兴趣通过 description/Bio 中存在的某些词来搜索特定用户?可以这样做吗?

例如:

具有描述的用户:"full time developer...." 我希望通过搜索单词 "developer"

来检索他

按描述搜索("developer");

有什么方法可以做到吗?

如果你 read the Twitter documentation 你会发现你可以调用 users/search 来获取此信息。

根据 Twitter4J documentation 这是 searchUsers() 函数。