Hi,
If you perform a search you will only receive the URL entity in which you will be redirected toward a video.
You will then need to have a look into the Entities of the tweet.
Here is an example:
Cheers,
Linvi
If you perform a search you will only receive the URL entity in which you will be redirected toward a video.
You will then need to have a look into the Entities of the tweet.
Here is an example:
var search = Search.CreateTweetSearchParameter("#tweetinvi"); search.Filters = TweetSearchFilters.Videos; var videoTweets = Search.SearchTweets(search); foreach (var videoTweet in videoTweets) { var entities = videoTweet.Entities; var extendedEntities = videoTweet.ExtendedEntities; }
Linvi