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

Not able to Replaying tweet using Tweetinvi

// 1. /*Authentication */ TwitterCredentials.SetCredentials("", "", "", ""); var tweets = SearchJson.SearchTweets("@Kaanshu7"); var js = new JavaScriptSerializer(); var tweetsSerialize = js.Deserialize(tweets); var…
AASIS
  • 1
  • 1
  • 4
0
votes
1 answer

How would I pass the selected user string from a listbox to Tweetinvi?

Some of Tweetinvi's functions, like UnFollowUser, accepts an argument to know which user is the one to unfollow, etc. The problem is the user list can only return a string and I can't convert that to something its IUser interface can use. The code…
bricky149
  • 81
  • 1
  • 1
  • 8
-1
votes
1 answer

Real time Tweetinvi Streaming in Web API

Has anyone ever made a streaming application in ASP.NET Web API with Tweetinvi? I have to do a application where I connect to a Twitter Stream and track a specific hashtag. How do I properly authenticate and how do I open many streams for many…
Andreea B
  • 41
  • 7
-1
votes
2 answers

Tweets Streaming Service unable to write to HBase table on Azure HDInsight HBase cluster

I am following Microsoft's official Azure documentation: Analyze real-time Twitter sentiment with HBase in HDInsight tutorial to create a simple real-time tweets streaming service which will write tweets into a HBase table hosted on Azure HDInsight…
juvchan
  • 6,113
  • 2
  • 22
  • 35
-2
votes
2 answers

Accessing the properties of an IEnumerable

I'm using TweetInvi to grab a bunch of tweets that match a specified hashtag. I do this with the following: var matchingTweets = Search.SearchTweets(hashtag); This returns an IEnumerable (named ITweet, interface of Tweet), however I cannot create a…
Wolfish
  • 960
  • 2
  • 8
  • 34
-2
votes
1 answer

How to get live tweets in c# using tweetinvi library

Im using tweetinvi in c# to get stream of tweets for analysis , is there a way i can get real-Time or live filtered tweets
K A
  • 19
  • 2
-3
votes
1 answer

C# -> RaiseEvent in VB.Net

I am having fun with TweetInvi in VB.Net, unfornately I have issue with converting this code to VB.Net. I am still beginner and I was trying to get some information about RaiseEvent, but I couldn't do it. Here is code. I want to run this in button…
dwarfmine
  • 15
  • 3
1 2 3
9
10