Commented Unassigned: I want to retweet using tweetinvi. [2436]
Hi , I want to retweet using tweetinvi but I got return null. I am sharing my code here please help asap.ITweet data1 = null; TwitterCredentials.ExecuteOperationWithCredentials(credentials, () =>{...
View ArticleCommented Unassigned: is any way to tweet upto 140 chars using tweetinvi? [2451]
Hi Team, when I am posting tweet upto 100 chars than it is tweeted successfully. but it it not working for more than 100 chars, can you please tell me what is the limit here. I have seen on twitter ,...
View ArticleCreated Unassigned: Tweetinvi is not using the correct configuration settings...
The TweetinviSettingsAccessor accessor has 1 instance per thread. When TweetinviSettingsAccessor is a dependency of an SingleInstance class, this class cannot select which Accessor to use because there...
View ArticleNew Post: How to retrieve tweet text and creater hyperlink if text has an URL?
The tweet Text returns plain text and it has no ability for the hyperlinks. How can I manipulate the tweet if it has a URL so it can be clicked and open up a new window?
View ArticleNew Post: Cashtags and Hashtags with FilteredStream
I never heard about cashtags before :p I will try to have a look into it but I don't know if it will be released with 0.9.4.1 or 0.9.5.0. Concerning the Execution Time, the FilteredStream is quite CPU...
View ArticleNew Post: problems with Stream no events fired
Hi Soriega, I am sorry to hear that you have not been able to fix the problem but I do not understand what is wrong with your code. You can maybe send me your code with your credentials so that I have...
View ArticleNew Post: How to retrieve tweet text and creater hyperlink if text has an URL?
Hi, The ITweet interface has property called Entities and ExtendedEntities. They both contains another property called URLs, which is a list of URLs detected by Twitter. Each of these URLs contains...
View ArticleNew Post: How to retrieve tweet text and creater hyperlink if text has an URL?
Thank you for your prompt response linvi. In order to get the tweet text, I use Text property of Tweet object. How can I access Extended entities with the text and its urls with the hyperlinks?
View ArticleNew Post: Cashtags and Hashtags with FilteredStream
Here's more on Cashtags. It's actually a real thing :-)http://thenextweb.com/twitter/2012/07/31/twitter-rolls-out-clickable-stock-symbols-so-you-can-keep-up-with-your-investments/ I'll let you know...
View ArticleSource code checked in, #39882
Version 0.9.4.1 - Fixed a bug that caused settings to not have the correct values when switching between threads
View ArticleCommented Issue: Tweetinvi is not using the correct configuration settings...
The TweetinviSettingsAccessor accessor has 1 instance per thread. When TweetinviSettingsAccessor is a dependency of an SingleInstance class, this class cannot select which Accessor to use because there...
View ArticleEdited Issue: Tweetinvi is not using the correct configuration settings when...
The TweetinviSettingsAccessor accessor has 1 instance per thread. When TweetinviSettingsAccessor is a dependency of an SingleInstance class, this class cannot select which Accessor to use because there...
View ArticleNew Post: How to retrieve tweet text and creater hyperlink if text has an URL?
Hi again, I am not sure how I can help you more than what I told you. Maybe some code will help?var tweet = Tweet.PublishTweet("I think https://tweetinvi.codeplex.com is awesome"); var...
View ArticleNew Post: Get all tweets of a particular #tag
Can I get all tweets corresponding to a particular hashtag?
View ArticleNew Post: How to retrieve tweet text and creater hyperlink if text has an URL?
Another way would be using regex to parse urls in the tweet text and replacing them with hyperlink html code. It should be fairly easy to parse urls as all urls in Tweet.Text would be t.co urls. imlokesh
View ArticleNew Post: Get all tweets of a particular #tag
I am using this var searchParameter = Search.GenerateTweetSearchParameter("#myblog"); searchParameter.MaximumNumberOfResults = 10000; searchParameter.TweetSearchFilter = TweetSearchFilter.All;...
View ArticleNew Post: Get all tweets of a particular #tag
You need to be aware that Twitter is restricting the Search API so that it only returns the tweets matching your criteria of the past week sometimes extending up to 2 weeks. Therefore the number of...
View ArticleNew Post: Get all tweets of a particular #tag
Hi, I don't think it's possible to scrape all tweets corresponding to a particular hashtag. The search API only goes one week in the past. So if you check the tweets you get for #MyBlog, you'll see the...
View ArticleNew Post: Get all tweets of a particular #tag
Thanks guys.. When using filteredStream how can I be sure that the tweets won't be duplicated?
View Article