You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var tweetsFromList = userClient.Lists.GetTweetsFromListAsync(123456789).GetAwaiter().GetResult();
I received this error:
You currently have access to a subset of Twitter API v2 endpoints and limited v1.1 endpoints (e.g. media post, oauth) only. If you need access to this endpoint, you may need a different access level.
I was using version 1.1 to get all the tweets in a list. See the code below. Does this library have the same feature available for v2? It looks like this wasn't a feature of v2 until just recently. See the end point here (https://developer.twitter.com/en/docs/twitter-api/lists/list-tweets/migrate).
userTimeline = await userClient.Lists.GetTweetsFromListAsync(new GetTweetsFromListParameters(1360674149816037376) { SinceId = lastTweetId });
The text was updated successfully, but these errors were encountered: