New Post: problems with Stream no events fired
Hi superhaze421, I will have the same answer as the one I gave to soriega. I will need your complete code with your credentials (through the contact page) to debug this issue as I don't face it...
View ArticleNew Post: Retweet with custom appended content
Hi, This is simply not possible to do that as Twitter does not provide this option (Twitter REST API - Retweet Documentation). As per the documentation a Retweet is a new tweet that only embed the...
View ArticleNew Post: Problem publish Tweet
Hi, I'm doing a testing of API with WPF, I try Publish a Tweet but don´t work, with my count: private async void PublicMyTweetAsync() { await Task.Run(() => PublishMyTweet()); } private void...
View ArticleNew Post: GetHomeTimeLine not retrieving given number of tweets
Hi, I'm trying to get a number of tweets from the user timeline, but no matter how I dot it it does not retrieve the given number. This is my code: var timelineParameter =...
View ArticleNew Post: Can you use a proxy?
I was wondering can you use a proxy with Tweetinvi? And How? Thank you
View ArticleNew Post: Search API Question
Hi Would it be possible to store the keywords in an arraylist then loop through the arraylist and use the twitter process to search for each keyword in the arraylist? This is how I imagine the process...
View ArticleNew Post: Get photo URL from tweet
hello tweetinvi, can u figured out how to get image URL from tweet? for example i got this link http://t.co/t6wzGwNAdP and this link http://ow.ly/i/7Giww from tweet.Text. that link is not show the real...
View ArticleNew Post: Can you use a proxy?
It's pretty straightforward really. It's even mentioned on the downloads page.https://tweetinvi.codeplex.com/releases/view/119316#Proxy Also, you can download the source code and look in the...
View ArticleNew Post: Get photo URL from tweet
Here you go:var tweet = Tweet.GetTweet(536780911237283841); var imageURL = tweet.Entities.Medias.First().MediaURL;imlokesh
View ArticleNew Post: Can you use a proxy?
You got to be kidding me, I didn't even see that. Thank you so much.
View ArticleNew Post: Problem publish Tweet
Try to get the last exception.var ex = ExceptionHandler.GetLastException(); MessageBox.Show(string.Format("Error {0}: {1}", ex.StatusCode, ex.TwitterDescription));imlokesh
View ArticleNew Post: Can you use a proxy?
I sorry to bother again, but will this work with proxy with password? How will it look like? Thanks!
View ArticleNew Post: Can you use a proxy?
TweetInvi doesn't support proxy authentication by default. But I needed that feature and ended up editing the source (didn't want to bother linvi with too many feature requests :D ). Here's what you...
View ArticleNew Post: Retweet with custom appended content
If you're trying to mimick the quote feature of mobile app - that doesn't count towards retweets. Its just a new tweet. So you're looking to PublishTweet instead of PublishRetweet.
View ArticleNew Post: Problem publish Tweet
thanks a lot, I just try:ex.StatusCode: error 401 ex.TwitterDescription: null ex.TwitterExtensionInfo:...
View ArticleNew Post: How to get tweet id of another User?
Is there any way to get the tweet id of another user? Thanks
View ArticleNew Post: Can you use a proxy?
I can't find the "HttpClientWebHelper.cs" file. Just to let you know I install Tweetinvi with packet manager nuget. I don't know if that have any affect of whether I can't find the file or not. I...
View Article