Questions tagged [linq-to-twitter]
246 questions
3
votes
1 answer
c# LinqtoTwitter getting ScreenName/UserID from connection context
I've read nearly every post with a code example in the LinqToTwitter documentation.
I want to get the UserID or the User's ScreenName to make a call like this for the user who is logged in.
var friendList =
await
(from…

Ulpin
- 179
- 1
- 14
3
votes
1 answer
Most efficient way to find inactive Twitter followers using LINQ to Twitter
The number of queries allowed by the Twitter API is limited. On the other side the definition of "inactive user" may imply a different algorithm with an impact on request number.
I'm looking for the most efficient way, in number of queries and…

danvy
- 2,085
- 12
- 17
3
votes
1 answer
LinqToTwitter BeginAuthorizationAsync throws NullReferenceException
I am attempting to add twitter integration into an existing MVC4 Application using the LinqToTwitter nuget plugin (v3.1.2), and following the documentation here
Imports LinqToTwitter
Public Class OAuthController
Inherits…

Zippy42
- 81
- 7
3
votes
3 answers
Could not load file or assembly System.Net.Http.Primitives on published executable
I'm using linqtotwitter (v3.0.3), installed with NuGet.
It's working with VS2012 .NET 4.5
But when I try to deploy, taking this error on runtime;
Could not load file or assembly 'System.Net.Http.Primitives, ... or one of its dependencies. The…

emrahustun
- 31
- 1
- 5
3
votes
2 answers
Exclude Retweets using LinqToTwitter
My LinqToTwitter class can not exclude retweets.
var srch = (from search in twitterCtx.Search where search.Type == SearchType.Search && search.Query == term && search.Count == 100 select search).SingleOrDefault();
There is no option about…

Tayfun Yaşar
- 422
- 2
- 9
- 24
3
votes
1 answer
Linq To Twitter clearing IOAuthCredentials credentials
I have a piece of functionality that creates a voice message and if authenticated through Twitter, will post a message to their Twitter account. I want the ability for the user to turn off the message posting to Twitter if they desire, so I was…

Rex_C
- 2,436
- 7
- 32
- 54
3
votes
1 answer
LINQ to Twitter Support Xamarin.iOS?
I wonder if anyone try using LINQ to Twitter 3.0 beta with Xamarin.iOS ? Joe Mayo provide an example of how using the library with Xamarin.Android However i can't seems to get that work on IOS > it's compiling, but it crashes at runtime because it's…

Tweep
- 138
- 7
3
votes
1 answer
LinqToTwitter not seeing all private lists
I'm trying to view all private lists of the authenticated user using linqtotwitter. However, this only shows one private List, even though there are another 18 on the list. It seems to have selected this one list at random as it sits half way up…

jonvines
- 91
- 6
3
votes
1 answer
Using Linq2Twitter and cached OAuth tokens withing a ServiceStack api
I want to use Linq2Twitter to make a Twitter API call from within a REST API written in ServiceStack.
I have the following information:
ConsumerKey
ConsumerSecret
cached OAuth Token from when the user authenticated our app on the site
cached OAuth…

niltz
- 1,014
- 11
- 28
3
votes
3 answers
Get user info after authentication using LINQ to Twitter
I want to retrieve user info after authentication with Twitter. For this purpose I'm using LINQ to Twitter library. It's possible to do with this code:
var usersResponse =
(from user in context.User
where user.Type ==…

Rade Milovic
- 965
- 4
- 13
- 29
3
votes
3 answers
awaited task not running asynchronously
I'm trying to download some twitter info asynchronously and it's blocking the UI thread. I'm using LinqToTwitter (http://linqtotwitter.codeplex.com/) to download the info.
Here's the call to the task
PublicTweetListBox.ItemsSource = await…

Nick Ward
- 33
- 4
2
votes
1 answer
Get users that a given user is FOLLOWING (not followers) in LinqToTwitter
How can I get UserId and ScreenName of the users that a given user is FOLLOWING (not followers) in LinqToTwitter?
??

VMh
- 1,300
- 1
- 13
- 19
2
votes
1 answer
Extract BearerToken from LinqToTwitter IAuthorizer
Hopefully a simple answer to what I think is a simple question.
Is it possible to Extract the BearerToken from the IAuthorizer once I am authenticated? After using LinqToTwitter to authorize, I want to make my own API calls and I need the…

AlwaysLearning
- 35
- 5
2
votes
0 answers
WPF Image source binding is not working
I have a WPF application which used LinqToTwitter as data source for a ListBox. The data that is rendered inside the DataTemplate comes from the twitter source which has a text and image.
SocialFeedView.xaml code

Junius
- 589
- 2
- 12
- 41
2
votes
2 answers
Do 'from:' search using linqtotwitter
I am doing the following -
TwitterContext twitterCtx = new TwitterContext(auth);
string searchTerm = "\"from:stephenfry\"";
List searchResponse =
(from search in twitterCtx.Search
where search.Type == SearchType.Search &&
…

Ebikeneser
- 2,582
- 13
- 57
- 111