mjuk
mjuk

Reputation: 337

How to get Twitter banner url using TweetInvi

I'm using the TweetInvi nuget package to retrieve information from the Twitter API.

I'm using V2 and it's working great for most of the user profile image but I can't see any way to get the user's Twitter banner url. Am I missing something or does this not exist in TweetInvi? The Twitter API does provide this so seems strange if TweetInvi doesn't.

var userClient = new TwitterClient(consumerKey, consumerSecret, accessToken, 
accessTokenSecret);

var userProfile = await userClient.UsersV2.GetUserByNameAsync(twitterHandle);

Upvotes: 0

Views: 223

Answers (1)

mjuk
mjuk

Reputation: 337

As per the comment from Andy Piper, it seems this functionality is not available in TweetInvi V2.

Upvotes: 0

Related Questions