Questions tagged [linq-to-twitter]

246 questions
0
votes
1 answer

Trying to write a small C# application implementing the Twitter API

I am relatively new to C# and I am trying to write an application that reads all of the latest tweets from a user and spits out a list of the links to a text file. Would I just need the twitter API and streamwriter? Is there anything I am…
0
votes
1 answer

c# LinqToTwitter Connection OAuth PIN

Im having the following problem connecting to Twitter using OAuth PIN authorizer method. The Code: private async void button1_Click(object sender, RoutedEventArgs e) { pinAuth = new PinAuthorizer { CredentialStore =…
Ulpin
  • 179
  • 1
  • 14
0
votes
0 answers

c# BeginInvoke Windows Phone 8.1

I dont understand this programming syntax around Dispatcher.RunAsync. All I know is that I have to translate the following authentification module from Linq2Twitter working on WP8 to WP8.1. async void Page_Loaded(object sender, RoutedEventArgs e) { …
Ulpin
  • 179
  • 1
  • 14
0
votes
1 answer

Linq To Twitter - Who's in this photo

I have been playing with Linq to twitter for a while now. I have the code working fine to upload media, in my case I am uploading images. This will be automated and I get the people I tag from our list of followers. What I want to do is to "tag"…
Craig_za
  • 21
  • 4
0
votes
1 answer

Get Twitter replies with LinqToTwitter

I want to retrieve replies from a Tweet with LinqToTwitter api but i can`t. I found this but it is already removed. Some help?
dario
  • 170
  • 1
  • 14
0
votes
3 answers

Xamarin Android crashes while trying to login LinqToTwitter

I'm encountering some really frustrating issue while trying to login to Twitter with LinqToTwitter on Xamarin.Android. Exception is: "System.NullReferenceExceptionObject: reference not set to an instance of an object" Here's a report from…
Jan
  • 184
  • 2
  • 15
0
votes
0 answers

LinqToTwitter C# library erroring out when calling CreateFriendshipAsync

I have been using LinqToTwitter's CreateFriendshipAsync method since quite a while, but all of a sudden it started to give the following error: Invalid character '<' in input string After doing authorization from Twitter when it returns to…
Ronak Jain
  • 199
  • 1
  • 3
0
votes
1 answer

Using LinqToTwitter in Console App and getting AggregateException Error

I'm trying to do a basic SingleUserAuthorizer call to twitter. I am getting this Exception when I try the User Linq request. Any ideas? Exception thrown: 'System.AggregateException' in mscorlib.dll var auth = new SingleUserAuthorizer { …
Rob Gaudet
  • 131
  • 2
  • 14
0
votes
1 answer

Access twitter with C# using LINQ to Twitter

I trying to create a Winforms app in VS for search a specific keyword and retrieve the tweet display in my app. Below is my code which trying to get 100 tweet from my profile and make a call to the new method in my form's constructor, followed by…
0
votes
1 answer

How to use LinqToTwitter in UAP?

I started to try using Linq to Twitter library to query some twitter data. I have a following function: public static async Task> GetTweets(TwitterContext context, string searchQuery, int count = 15) { var searchResult =…
user2403909
  • 85
  • 3
  • 12
0
votes
3 answers

How to get more tweet from a user using LINQ to Twitter

It clearly state that it allows to get up to 3200 tweets per person (see documentation). But using this code: var statusTweets = from tweet in twitterCtx.Status where tweet.Type == StatusType.User && tweet.ScreenName == "JoeMayo" …
Photonic
  • 1,316
  • 19
  • 31
0
votes
2 answers

linqtotwitter retweets not appearing as retweets from stream

I am using the linqtotwitter (v3.1.2) library to stream tweets into an app but we don't want to process retweets. When I received a retweet the properties retweeted and RetweetedStatus.ID are always false and 0. Is this a bug in the library? I have…
slarge
  • 637
  • 1
  • 7
  • 19
0
votes
1 answer

Retrieve all the tweets of a specific hashtag

I am using linq2twitter library to retrieve tweets of a specific hashtag, and I am able to achieve that but the problem is that it is only gives 100 tweets. string consumerKey = "MyConsumerKey"; string consumerSecret =…
Farrukh Ahmed
  • 473
  • 4
  • 11
  • 26
0
votes
1 answer

linq to twitter limited result to a week, how to exceed it?

The following code is to get all tweets in a hashtag. if you tried different tags you'll have different result because of the amount of tweets in the last week. the problem is not related to the limit rate time of 15min. I have tried to delay the…
Feras
  • 834
  • 7
  • 18
0
votes
2 answers

Async calls in c#

When I execute the code I developed to call an Async method of the linq2Twitter, I am getting a System.Aggregate Exception, the code is below: static async Task> getRetweets(ulong tweetID, TwitterContext twitterCtx) { …