New Post: Comparing lists of GetFriends() and GetFollowers()
Here var user = User.GetLoggedUser(); var friends = user.GetFriends(); var followers = user.GetFollowers(); var result = followers.Where(follower => friends.All(friend => follower.Id !=...
View ArticleNew Post: Comparing lists of GetFriends() and GetFollowers()
Wow thank you, having it wrote that like has made it make a lot more sense to me, I was needlessly over complicating it, thank you for your time.
View ArticleNew Post: Comparing lists of GetFriends() and GetFollowers()
You're welcome but please be careful, I have inverted it.var result = friends.Where(friend=> followers.All(follower => follower.Id != friend.Id)); Regards, Linvi
View ArticleNew Post: Tweet.GetTweet returns null
Hi, Sorry for not responding before. I am not able to reproduce your issue. I have tried over 500 tweets none of them failed :( Do you have a way to reproduce it at 100% so that I can get the issue?...
View ArticleNew Post: Comparing lists of GetFriends() and GetFollowers()
Yes I noticed that afterwards and changed it but thank you again, I would've ended up doing the opposite at some point anyway :)
View ArticleNew Post: Get previous tweets
hI linvi, i'm trying to get the lastest 4 tweets for a specific tweet posted in a specific screen, in my case mteodoro85. what query should i use. var searchQuery =...
View ArticleNew Post: Get previous tweets
no 9.0.0.0, i will update it. and i will let you know. thanks for the fast reply
View ArticleNew Post: Get previous tweets
No same issue... this query should work? it's correctly what i've posted above?
View ArticleNew Post: Get previous tweets
HI marcoteodoro, While I'm nowhere near as useful as Linvi, I did try your code and it also returned nothing for me too. But then I slightly changed by using my twitter account instead and it indeed...
View ArticleNew Post: Get previous tweets
Hi both of you :) I think Phoenix is right, I did not take time to consider that you might have not posted tweets with the @. Twitter does not provide search saying get me all the tweets posted to......
View ArticleNew Post: Get previous tweets
ok i got it, the problem was not on the code but on my tweeter account. i did as pheonix told and it works now. thanks a lot for you help. other think that i was missing was the execute operation with...
View ArticleNew Post: Argument null exception on Search.SearchTweets()
I'm new to this and am getting an argument null exception on SerachTweets. Even the User.GetLoggedUser() and other functions seem to fail. var applicationCredentials =...
View ArticleNew Post: GET users/lookup?
Hi Linvi, I have a list of ids. Is there any way I can run the users/lookup api on them in one go and maybe get List<IUser> or something? Thank you. Tweetinvi is awesome by the way. And so are...
View ArticleNew Post: GET users/lookup?
Hi, Thanks for the compliment :p Yes it is possible very easily but I think this feature is too much hidden, I will try to make it more accessible in later versions....
View ArticleCreated Issue: Give access to User.UserFactory.GetUsersFromIds [2105]
This feature is only accessible from the factory making it difficult to access.
View ArticleNew Post: Argument null exception on Search.SearchTweets()
Hi Ahki, I can see that you are missing something in your code : TwitterCredentials.Credentials = newCredentials;Please try this before var tweetsFromUser = Search.SearchTweets("from:username"); And...
View ArticleNew Post: Argument null exception on Search.SearchTweets()
HI Linvi, Haaa... that makes sense. Thanks a bunch dear!! It is working now. Regards Akhi
View ArticleNew Post: User.GetUserFromId
Being able to see more code would help us to see where the problem might be occurring. Is this a web app? If you refresh the page which I assume has a field to enter a user name, it won't have any...
View Article