New Post: Simple user log in
I have no idea about the captcha,what does it means,please help me.thank you !
View ArticleNew Post: Problem when logging in again
Hey, Can you try using the method TwitterCredentials.SetCredentials? That's what I use, so I'm not sure the way you're setting credentials should work or not. imlokesh
View ArticleNew Post: What is the captcha of twitterinvi
Hi, When you run that example, it should show you a url where you need to go. You basically open that url in your browser and login to your twitter account. This gives the app permission to use that...
View ArticleNew Post: Get Reply to Specific Tweet
Hi Linvi, I use bool getRecursiveReplies = true; IEnumerable<ITweet> discussion = Search.SearchRepliesTo(SelectedTweet, getRecursiveReplies); and it's working, but in a strange way: sometimes It...
View ArticleNew Post: API Deployed in Web Hosting
Hi Linvi, I am having the exact same issue using 0.9.3.3: works fine locally but target production environment is not happy. Was this fixed in 0.9.3.4 or have you figured out what the cause of this...
View ArticleNew Post: SearchWithMetadata
Hi! Each time I try to use this code (or similar): var searchResults = Search.SearchTweetsWithMetadata("linvi"); var tweet = searchResults.Tweets.First(); var tweetMetadata = tweet.SearchMetadata; I...
View ArticleNew Post: How to run actions on multiple twitter accounts without setting...
I don't really understand the use of all the static helper objects, such as TwitterCredentials.SetCredentials(this.oAuthToken, this.OAuthTokenSecret, this.ApiKey, this.ApiSecret); From what I...
View ArticleNew Post: Tweetinvi and visual studio express
I seem to have lots of trouble opening the source in visual studio 2013 express. I have tried versions: Windows desktop Web But each time it reports "Visual studio cannot open this project type" (or...
View ArticleNew Post: User search
Is it possible to search for users? As desribed:https://dev.twitter.com/rest/reference/get/users/search I couldn't find an example in the cheat sheet, nor any reference to the end...
View ArticleNew Post: How to run actions on multiple twitter accounts without setting...
Am still as confused as ever, as the actions don't seemingly require a user To retweet var tweet = Tweet.PublishRetweet(lTweetId); return tweet.Retweeted; I assume it uses the last user who...
View ArticleNew Post: How to run actions on multiple twitter accounts without setting...
Hi, Here's how you do multiple logged in users with TweetInvi:var credentials = TwitterCredentials.CreateCredentials("Access_Token", "Access_Token_Secret", "Consumer_Key", "Consumer_Secret");...
View ArticleNew Post: How to run actions on multiple twitter accounts without setting...
ok, so the answer is there on the home page lol. I must have read that page 100 times, doesn't help programming late in to the night. The credentials have a thread scope, it means that when modifying...
View ArticleNew Post: How to run actions on multiple twitter accounts without setting...
imlokesh wrote: Hi, Here's how you do multiple logged in users with TweetInvi:var credentials = TwitterCredentials.CreateCredentials("Access_Token", "Access_Token_Secret", "Consumer_Key",...
View ArticleNew Post: how to implement Twitter 3-legged authorization with tweetinvi
I am looking same code to implement Twitter 3-legged authorization with tweetinvi? please help. thanks
View ArticleNew Post: What is the captcha of twitterinvi
Thank you very much for your help,and I am so sorry for replying so late.I have solved the problem now,thank you !And can I ask another question?Do I need to receive the captcha every time we run the...
View ArticleNew Post: What is the captcha of twitterinvi
You need Access Token and Access Token Secret to make requests to the Twitter API. You should save the access token and secret values the first time you generate it using captcha method. These values...
View ArticleNew Post: how to implement Twitter 3-legged authorization with tweetinvi
Hi, Have you seen the ExampleInvi project for GenerateCredentials examples? I'm not sure about windows store app but that could help you figure things...
View ArticleNew Post: how to implement Twitter 3-legged authorization with tweetinvi
Hi imlokesh, I actually cant understand this whole process, if it is Windows Store app. I think maybe I should 1: add a webview control to direct user to twitter login page with callback URL to...
View ArticleNew Post: What is the captcha of twitterinvi
Thank you!You are so nice.Good luck to you!
View ArticleNew Post: Problem when logging in again
Thanks for your help imlokesh. Now I useTwitterCredentials.SetCredentials(AccessToken, AccessTokenSecret, ConsumerKey, ConsumerSecret); but the problem somehow stays the same.. Could it be a problem...
View Article