Can i get the follower of a certain user in a string Array

37 Views Asked by At

I want to get the follower of a certain user in a string[] so I can add them with my bot.

private static TwitterService tservice;
...

tservice.ListFollowerIdsOf(new ListFollowerIdsOfOptions());

This method sounds like it could give you a list of ids of specific twitter follower i tried but it did not work that well.

1

There are 1 best solutions below

2
IceCode On

Try the following, it looks like you need to specify a followerId in the ListFollowerIdsOfOptions() object

{ScreenName = _hero}

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