Questions tagged [tweetinvi]

Tweetinvi is an intuitive .NET C# SDK that provides an easy and intuitive access to the Twitter REST and STREAM API 1.1.

Tweetinvi is a .NET C# SDK that provides easy access to the REST and Stream API. Beyond the classical data access it provide many other helpers classes that can be used across the project.

Tweetinvi has been developed keeping in mind that each of the object have a context. The API provides 3 different classes for Twitter:

  • Users
  • Tweets
  • Messages

These allow any query to be performed in a single method call.

You should use this tag if your question is related to Tweetinvi or any of its classes.

See also:

142 questions
0
votes
2 answers

Finding the tweetID of a tweet in tweetinvi

I am relatively new to programming in C# (Learning on my own for a school project) and decided to try using TweetInvi to implement Twitter functionality. So far it's going good, got the authentication and publishing up and running, but I'm…
Kashilas
  • 3
  • 2
0
votes
3 answers

Why is my code not throwing me an error?

I am currently exploring my first third party lib and everything is working fine except for that it should be throwing me an error when something is wrong which it doesn't.. So this is my code, and I've tried causing an error and it should be…
0
votes
2 answers

how to use VAR outside any function

i am trying to learn tweetinvi credential, so i have the following UI and these 2 method, initAuthentication and startAuthentication private void initAuthentication() { var appCredentials = new…
Cignitor
  • 891
  • 3
  • 16
  • 36
0
votes
1 answer

How do I Auto Re-tweet Somebody or a Hashtag And Follow Them Using Tweetinvi

I want to make a automatic re-tweet/follow bot so I can follow and re-tweet certain people and RT a specific hashtag (#Giveaways) I am using Tweetinvi but I dont understand how to do these things I've listed.
0
votes
2 answers

C# Tweetinvi library - project build warning

I create UWP solution with two project - Universal Windows App and Universal Windows Class Library. In the App project i made reference to the Library project. Next step - I add with Nuget a Tweetinvi library (I trying different versions), and I…
Mikhail
  • 2,612
  • 3
  • 22
  • 37
0
votes
1 answer

event using for autoupdate

I have this small code on c# .NET which publish tweets and shows timeline of twitter using tweetinvi . And I'd like to autoupdate timeline whenever the tweet is sent. Can anyone advice how to do it with event? Thanks for answers. private void…
Aleksandr
  • 33
  • 4
0
votes
1 answer

How to get multiple keyword based steaming data using twitter streaming API

i am using tweetinvi 0.9.7 to fetch data from filtered stream against multiple keywords. i am fetching data against 10 keywords at the same time by using multiple threads. The problem is only two keywords are fetching the data and rest other threads…
0
votes
0 answers

Twitter GetFollowers() returning 0 followers

I am using TweetInvi C# twitter library to make twitter API calls. I have a list of Twitter users and I want to get just 20 followers of each of these users in my list. I execute User.GetFollowers(20) in a loop. I sometimes do get followers but…
ViV
  • 1,998
  • 8
  • 27
  • 54
0
votes
1 answer

Video upload with Tweetinvi

I am using TweetInvi to post video on Twitter. TwitterCredentials.SetCredentials(token.Token,token.TokenSecret,ConfigurationManager.AppSettings["ConsumerKey"], ConfigurationManager. AppSettings["ConsumerSecret"]); var filePath =…
JSP.NET
  • 188
  • 13
0
votes
1 answer

MissingManifestResourceException publishing to twitter from windows phone 8.1 app

I can publish to Twitter from the emulator. My code: private async Task PublishTweet() { StorageFile file = await ApplicationData.Current.LocalFolder.GetFileAsync("shareImage.png"); var credentials =…
0
votes
1 answer

The type initializer for 'Tweetinvi.TwitterCredentials' threw an exception while Autofac is 3.3+

i want to retrieve tweets from twitter using specific hashtags. i am using tweetinvi for this purpose.but i am getting an error outer exception: The type initializer for 'Tweetinvi.TwitterCredentials' threw an exception. Inner exception: {"Could…
Azka Gilani
  • 45
  • 1
  • 8
0
votes
1 answer

Twitter analytics data via Stream API using OAuth (access token)

I want the twitter analytics data, some values like: retweets, *followers, demographics and geographic data. I have Access Tokens for multiple users, and I want to access their data of Twitter Analytics. I have checked this thread too: C# console…
0
votes
1 answer

Random "namespace name 'Core' does not exist in namespace ' Tweetinvi"

I'm using the Tweetinvi C# Twitter API. It was working great until about 3 hours ago, when my solution (specifically one project) just stopped building. The error is a normal Assembly/Reference missing error, but I can see the files listed in the…
Matthew Peel
  • 357
  • 4
  • 15
0
votes
1 answer

Tweetinvi GetUserFromScreenName is nulll

I have a very simple application that is trying to get a user and then retrieve the user timeline for that user TwitterCredentials.SetCredentials("cred1","cred2", "cred3","cred4"); var user = Tweetinvi.User.GetUserFromScreenName("ladygaga"); var…
MightyAtom
  • 331
  • 4
  • 24
0
votes
1 answer

Using TweetInvi FilteredStream to monitor #Tags

I have a project where I have to monitor specific #tags so that I can perform an action, I was using the tweetinvi api which was great, but when connecting to my feed, I could only follow items on my feed, I need to be able to get the specific #tag…
Racing57
  • 81
  • 1
  • 3
  • 15
1 2 3
9
10