我想在string[]
中吸引某个用户的关注者,以便可以将其添加到我的机器人中。
private static TwitterService tservice;
...
tservice.ListFollowerIdsOf(new ListFollowerIdsOfOptions());
这种方法听起来像它可以给您我尝试过的特定Twitter关注者的ID列表,但效果不佳。
答案 0 :(得分:0)
尝试以下操作,看来您需要在ListFollowerIdsOfOptions()
对象中指定一个followerId
{ScreenName = _hero}
var service = GetAuthenticatedService();
var followers = service.ListFollowerIdsOf(new ListFollowerIdsOfOptions(){ScreenName = _hero});