New Post: Generate Credential Examples
I am having an issue with this as well. I have confirmed that my callback URL in the Twitter Application Settings is correct. I have tried the methods in code that return IOAuthCredentials, including...
View ArticleNew Post: Generate Credential Examples
Could you please share your code so that I identify where the issue could come from. Linvi
View ArticleNew Post: Generate Credential Examples
Here are a couple of ways I've tried. I am using version 0.9.0.3. This is the page that Twitter calls back after authorization. I've confirmed that twitter is sending me back oauth_token and...
View ArticleNew Post: Generate Credential Examples
I have everything working perfectly on my side using the code provided on Examplinvi/CheatSheet.// I think we are fine on this linevar applicationCredentials =...
View ArticleNew Post: Best practise for tracking Tweets which contain own @ScreenName
Using UserStream it is possible to detect Tweets CreatedByFriends/CreatedByAnyone etc. However, what is best practise when one wants to detect tweets which contain @MyScreenName in them. Is this...
View ArticleCommented Unassigned: Tweet favourite [2096]
I am trying to mark a tweet as a favourite, I have the authorization token and am able to view profile details. When I search for tweets I get back list but I am unable to mark any as a favourite, I...
View ArticleSource code checked in, #35125
Version 0.9.0.4 - Updated TwitterAcessorr.Try operation to not fail when receiving null objects
View ArticleSource code checked in, #35126
This brand has been created from Tweetinvi 0.9.0.3 and should be used for W8 development. The idea is that we only want to move objects from this branch in order to keep their history
View ArticleNew Post: Generate Credential Examples
Thanks for the quick reply. I am doing this from a web application. The process detailed above is exactly what I'm doing, except I have it split into two parts: The first part I do until I get the...
View ArticleNew Post: Best practise for tracking Tweets which contain own @ScreenName
Hi MatR, It depends on what you are willing to do. If the @MyScreenName is really YOUR ScreenName, I would personally use the UserStream because it will include the private tweets.var us =...
View ArticleCreated Feature: RateLimit [2097]
Implement a solution that allow developers to listen to rate limit events and act in consequence.
View ArticleNew Post: Best practise for tracking Tweets which contain own @ScreenName
Ahhh. Of course. Thanks - that works now.
View ArticleNew Post: Example of Follow/Unfollow
Would it be possible to see some sample code demonstrating Following and Unfollowing another twitter user. Thanks a lot.
View ArticleNew Post: Blocking users
Hi, This method is not yet implemented but you can use the TwitterAccessor like this :// var queryWithUserId = "https://api.twitter.com/1.1/users/report_spam.json?user_id=YOUR_USER_ID";var...
View ArticleNew Post: Twitter through proxy
Is it possible to set up communication with Twitter through any proxy?
View ArticleCreated Feature: Twitter Accessor : Add the ability to get a specific path...
For example, blocked users returns { "users" : [] } containing a list of users, we would like to be able to do:TwitterAccessor.ExecuteGetQuery<IEnumerable<IUserDTO>>(blockQuery, users);
View ArticleNew Post: Example of Follow/Unfollow
I believe I have found this information inhttps://tweetinvi.codeplex.com/SourceControl/latest#Release/Examplinvi/Program.cs In LoggedUser_FollowUser LoggedUser_UnFollowUser Thanks for this.
View ArticleNew Post: Example of Follow/Unfollow
Hi, Yes you can find all the examples in Program. For the sake of developers coming to this post here is the code:var loggedUser = User.GetLoggedUser(); var userToFollow =...
View ArticleNew Post: ReplyTo is not threaded
Perhaps I am misunderstanding what this is meant to do, but when I use the following code taken from Tweet_PublishTweetInReplyToAnotherTweet() sample, a tweet is successfully posted, but when viewed...
View ArticleNew Post: Tweet.GetTweet returns null
Passing in a valid Tweet.Id into GetTweet(), for example var tweet = Tweet.GetTweet (theTweetId); always returns null and the following exception is lodged: TwitterDescription "Not Found - The URI...
View Article