Quantcast
Channel: Tweetinvi a friendly Twitter C# library
Browsing all 4126 articles
Browse latest View live
↧

New Post: GetHomeTimeLine not retrieving given number of tweets

This issue probably comes from the fact that the API is so unreliable. Can you please let me know if the number of Tweets you receive is same for every call you make? Or does the number of retrieve...

View Article


New Post: problems with Stream no events fired

I could send the code, but would you be interested in remoting into my desktop. It could have something to do with my environment rather than the code itself?? I'm available this evening. Carmen

View Article


New Post: problems with Stream no events fired

public Form1() { InitializeComponent(); cred = TwitterCredentials.CreateCredentials(accessToken, accessTokenSecret, consumerKey, consumerKeySecret); TwitterCredentials.SetCredentials(cred); } private...

View Article

New Post: Issue with filtered stream

Thanks, the issue was with the keyword list. Don't know exactly why but it didn't like the last few words I added to the list.

View Article

New Post: Quick question about private tweets

Is it possible through the API to get tweets from a twitter account that is private or need to be approved to follow that user?

View Article


New Post: Get twitter user Date-of-Birth(DOB) or Gender

I want user's DOB or Gender for my research based project.I google this but haven't found any positive post that twitter provide DOB or Gender.Can anyone help me or show me the way if it is possible to...

View Article

New Post: GetHomeTimeLine not retrieving given number of tweets

For me it's 200 tweets every time I call the procedure

View Article

New Post: Quick question about private tweets

You need to have your account approved to see the tweets of a user who setup his account as private. There is no way around that. Linvi

View Article


New Post: Get twitter user Date-of-Birth(DOB) or Gender

Hi, I could not even find these information within the Twitter interface. Usually if Twitter does not give access to these information from their website it is very unlikely that this information will...

View Article


New Post: Events stop firing

We are running TweetInvi as a server process which collects Tweets and Direct Messages for a specific account using filterstream and userstream. Most exercising of the code has been done following...

View Article

New Post: Exclude retweets and replies in a search

Hello! I would like to get the last 100 tweets from a hashtag but i want to exclude retweets and replies. I know that i can check if a tweet has been retweeted using tweet.isRetweet but i want to...

View Article

New Post: problems with Stream no events fired

Am I able to sent the credentials via private message to you? Thanks again, Carmen

View Article

New Post: How can I have another user sign in to my app?

Okay thanks!

View Article


New Post: Ho to assign sender parameter for stream?

// Access the sample stream var sampleStream = Stream.CreateSampleStream(); sampleStream.TweetReceived += (sender, args) => { Console.WriteLine(args.Tweet.Text); }; sampleStream.StartStream(); What...

View Article

New Post: Search hashtag from user

Hi all! I would like to know if it is possible to get tweets published for a specific user containing certain hashtag Thanks!

View Article


New Post: Ho to assign sender parameter for stream?

Hi, Any event in C# delegate in C# contains 2 parameters, 'sender' which is the source of the event and 'args' which contains the information the event needs to communicate. Therefore just ignore the...

View Article

New Post: Search hashtag from user

Hi, You will need to get the tweets of this user from the UserTimeline and filter this yourself.var userTweets = Timeline.GetUserTimeline("tweetinviapi"); var matchingTweets = userTweets.Where(x =>...

View Article


New Post: Exclude retweets and replies in a search

As you can read in the Twitter Search API documentation, this feature is not available. You will have to do it on your own like you described. Linvi

View Article

New Post: Events stop firing

Hi, You are not the first one reporting issues with the Stream. It looks like Twitter is having issues. I will have to update the code to handle the disconnect. Here is a temporary fix for you.var s =...

View Article

Created Issue: 30 seconds : Stream Reset [2469]

Reset the stream after 30 seconds of inactivity.

View Article
Browsing all 4126 articles
Browse latest View live