New Post: Get user Followers
Ok thanks, Do you get any result when doing the following query?var ladygaga =Tweetinvi.User.GetUserFromScreenName("ladygaga"); // Followers without Maximum number of usersvar followers =...
View ArticleNew Post: 401 Not Authorized Exception when calling...
Again async :p I can see what is wrong with your code. As I tried to described previously, calling GetAuthorizationURL results in the applicationCredentials to have its AuthorizationToken value to be...
View ArticleNew Post: 401 Not Authorized Exception when calling...
Hi Linvi, Thanks for that. I had noticed the same thing myself when stepping through your code, that secret field is only populated after the call to GetAuthorizationURL, I'm just working those details...
View ArticleNew Post: Get user Followers
The question, 250 is refere to what? is it a randomly 250 followers ? if i want to pull all followers? what is the strategy to do that ? Thanks for your time (Y)
View ArticleNew Post: problems with Stream no events fired
Actually what happens is NOTHING..... There are no errors or anything, it simply doesnt return any Events when people tweets are created. I have bumped into similar problems before and then it was...
View ArticleNew Post: problems with Stream no events fired
Please share more of your code and try the following:var us = Stream.CreateUserStream(); us.TweetCreatedByAnyone += (sender, args) => { Console.WriteLine(args.Tweet); }; us.StartStream();Let me know...
View ArticleNew Post: problems with Stream no events fired
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using...
View ArticleNew Post: problems with Stream no events fired
There was a funny formatting there i see now, but basically its a simple "Form1" C# and the code you sent. All other functions than stream seems to work fine, i can request from the timeline, post...
View ArticleNew Post: problems with Stream no events fired
I am not sure what is wrong with your code. I have similar logic working perfectly well on my machine. If you put a breakpoint on the Console.WriteLine it is never reached? Linvi
View ArticleNew Post: Get user Followers
By performing a single query you can get up to 250 users using the Follower endpoint of Twitter. By default Tweetinvi never does more than 1 operation. If you want more than 250, you can specify the...
View ArticleNew Post: problems with Stream no events fired
no, that is exactly what i did. I had a breakpoint but no event is ever fired.
View ArticleNew Post: Get user Followers
Hi again This is a great idea to use var user = User.GetLoggedUser(); var followerIds = user.GetFollowerIds() var first100FollowerIds = followerIds.Take(100); var followers =...
View ArticleNew Post: 401 Not Authorized Exception when calling...
Hi Linvi, Thanks for your patient help, picking up that AuthorisationSecret was the missing piece and now it works from end to end. Keep up the great work on this lovely library. All the best, Russell...
View ArticleNew Post: Get user Followers
Hi, No you can specify a number higher than 5000 to the user.GetFollowerIds(10000); But as I said, be careful with your RateLimit when you request more than 5000 users, you will use your Tokens quite...
View ArticleNew Post: Beginner Questions on Stream in WinForm
Hi, This is normal, the StartStream method is a synchronous method that will exit only when the stream closes. I believe you want your application to be running the stream in a BackgroundWorker or a...
View ArticleNew Post: problems with Stream no events fired
I have tried this one, same problem...var credentials=TwitterCredentials.CreateCredentials(accesstoken, accesssecret, consumerkey, consumersecret);...
View ArticleNew Post: Beginner Questions on Stream in WinForm
Also, I usually prefer using TwitterCredentials.SetCredentials instead of TwitterCredentials.CreateCredentials + TwitterCredentials.ExecuteOperationWithCredentials. Linvi
View ArticleNew Post: problems with Stream no events fired
http://lembra.wordpress.com/2012/03/08/twitter-stream-mysterious-401unauthorized-status-with-oauth-and-clock-issue/ Is this an issue you have encountered?
View Article