Hi,
I am not sure about this and I will have to test this. But Tweetinvi is raising all the events that Twitter sends to the stream.
I guess you can check if Tweetinvi is missing the message by using the events
If none of these events are raised it means that Twitter does not send the information for the new follower.
Cheers,
Linvi
I am not sure about this and I will have to test this. But Tweetinvi is raising all the events that Twitter sends to the stream.
I guess you can check if Tweetinvi is missing the message by using the events
JsonObjectReceived
and UnmanagedEventReceived
.var userStream = Stream.CreateUserStream(); userStream.JsonObjectReceived += (sender, args) => { var json = args.Json; }; userStream.UnmanagedEventReceived += (sender, args) => { var json = args.JsonMessageReceived; };
Cheers,
Linvi