我可以在字符串数组中获取某个用户的关注者吗

时间:2018-07-01 15:32:36

标签: c# tweetsharp

我想在string[]中吸引某个用户的关注者,以便可以将其添加到我的机器人中。

private static TwitterService tservice;
...

tservice.ListFollowerIdsOf(new ListFollowerIdsOfOptions());

这种方法听起来像它可以给您我尝试过的特定Twitter关注者的ID列表,但效果不佳。

1 个答案:

答案 0 :(得分:0)

尝试以下操作,看来您需要在ListFollowerIdsOfOptions()对象中指定一个followerId

  

{ScreenName = _hero}

var service = GetAuthenticatedService();
var followers = service.ListFollowerIdsOf(new ListFollowerIdsOfOptions(){ScreenName = _hero});