Questions tagged [linq-to-twitter]
246 questions
2
votes
1 answer
How to Authenticate a user with Twitter but not for Log in purposes
I have MVC5 installed and after a day i think it is time to reach out and get help, I've never been a OAuth Guru, other things yes but this no. And I have searched the internet but no one specifically focuses on the authentication process only and…

Filling The Stack is What I DO
- 6,553
- 14
- 54
- 86
2
votes
0 answers
LinqToTwitter User Stream memory leak
I'm having an issue with LinqToTwitter 4.1 where having a user stream open will eventually cause the programs memory usage to balloon out of control. This does not occur when the program starts running but only after some time, normally after a day…

Richard Mosley
- 111
- 1
- 6
2
votes
0 answers
Linq To Twitter add members to media/image
I have been playing with the Linq To Twitter module and it has been working fine for automating everything we have needed to do so far.
The problem I have now run into - I want to upload an image file and tag "who's in this photo" some of my…

Craig_za
- 21
- 4
2
votes
2 answers
Twitter query fails with exception "Method 'HttpClientHandler.set_AutomaticDecompression' not found"
I'm using Xamarin and LinqToTwitter plugin. What I want is just to fetch messages with some tag. But even simplest query fails because of error "Method 'HttpClientHandler.set_AutomaticDecompression' not found".
try
{
var context…

Jan
- 184
- 2
- 15
2
votes
0 answers
How to get replies of a specific tweet
I'm trying to get replies for a specific tweet.
This code helps me to get the last tweet but I can't get user's replies to this tweet.
var ctxTwitterContext = new TwitterContext(auth);
var srch = (from search in ctxTwitterContext.Search
…

Yakhlaf Yassir
- 63
- 1
- 9
2
votes
0 answers
Working with delegates Action
So I am trying to authenticate some user on twitter api using LinqToTwitter.
public class PinAuthorizer : AuthorizerBase, IAuthorizer
{
public PinAuthorizer();
public PinAuthorizer(bool forceLogin);
public PinAuthorizer(bool…

Silvio Santos
- 41
- 3
2
votes
3 answers
Sending Tweet with video (Error creating status.)
I am trying to send a tweet with video but getting following error in the "await twitterCtx.TweetWithMediaAsync" line
Error creating status.
if (Request.Params["VideoId"] != "")
{
AspNetAuthorizer auth =…

Mert
- 6,432
- 6
- 32
- 68
2
votes
1 answer
LinqToTwitter check authorisation
I have this working code:
public AspNetAuthorizer Authoriser { get; set; }
protected async void Page_Load(object sender, EventArgs e)
{
var currentUser = v2.Membership.Functions.GetLoggedInAsUser();
Authoriser =…

Tom Gullen
- 61,249
- 84
- 283
- 456
2
votes
1 answer
Twitter StatusId
I am using Linq2Twitter in my ASP.net Web Forms application to return recent user tweets
var tweets = await
(from tweet in ctx.Status
where (
(tweet.Type == StatusType.User)
&& (tweet.ScreenName == screenName)
&&…

Neilski
- 4,385
- 5
- 41
- 74
2
votes
1 answer
LinqToTwitter authentication MVC 4 examples
I've downloaded LinqToTwitter (v3.0.2) and added it to my asp.net MVC 4 project. I've previously been working with version 2.1.3 of LinqToTwitter and webforms. I'm now looking for some examples to guide me in the right direction when it comes to…

Nicke
- 365
- 4
- 8
- 25
2
votes
1 answer
Linq2Twitter Single User Authorisation Null Value Exception
I've been developing an internal ASP.NET web forms application for our business and one of the requirements is to display our Twitter feed on our portal home page to all users.
For this I've decided that it is best to use LinqToTwitter Single User…

BobbyDazzler
- 1,193
- 8
- 21
2
votes
1 answer
Getting All followers with Linq To Twitter
I am trying to get all the followers list by using the below code snippet. Each call get 200 follwers so I wrap up in the loop to get all the followers. User has 23.1K followers, but I m getting "Rate Limit" Exceed error when it reaches to 2800…

Ammar Khan
- 346
- 1
- 9
- 27
2
votes
1 answer
How to get n followers with Linq To Twitter
I am trying to get n followers where n could be 1,2,3,4 etc.. By default Linq To Twitter return all the followers. Is there any way I can define how many followers I need? My current code look like this
var followers = twitterCtx.Friendship
…

Ammar Khan
- 346
- 1
- 9
- 27
2
votes
1 answer
Why is ID not being returned by linqtotwitter
I am querying my home statuses. However I am finding that the ID for each tweet is not set.
var auth = new MvcAuthorizer
{
CredentialStore = new SessionStateCredentialStore()
{
ConsumerKey =…

Tom
- 12,591
- 13
- 72
- 112
2
votes
1 answer
Authenticating with OAuth using Linq to Twitter
I'm having real trouble trying to create an authentication context using the instructions here -> http://linqtotwitter.codeplex.com/wikipage?title=Implementing%20OAuth%20for%20ASP.NET%20MVC&referringTitle=Learning%20to%20use%20OAuth
I installed the…

Smith
- 2,904
- 3
- 19
- 25