Questions tagged [linq-to-twitter]

246 questions
0
votes
1 answer

linqtotwitter await auth.AuthorizeAsync();

I am trying to get a simple console app to work. I am stumbling on the await. If i run without await, My PinAuthorization is working, I get the code from twitter, enter it but cannot send a tweet. With the await in front of these commands, I am…
surfride
  • 11
  • 1
0
votes
1 answer

Get Tweets from a business page

I have to get feeds from a business page (like https://twitter.com/insead). It is not for a specific user. How can I use twitter api to fetch this . I would appreciate if someone can give some input in context of LINQ-to-Twitter C# api for this…
Raghav Thakur
  • 311
  • 1
  • 3
  • 13
0
votes
2 answers

Rx Twitter Stream stops on entering the third search topic

I tried to rebuild the Twitter example by Jonathan Worthington from this video: https://www.youtube.com/watch?v=_VdIQTtRkb8 It starts out working fine. But after a while the Stream stops. On the third search topic entered the app doesn't recieve any…
leifbattermann
  • 622
  • 7
  • 12
0
votes
2 answers

NullReferenceException using LinqToTwitter Search functionality

I'm using LinqToTwitter v3.1.1 from Nuget with Application-Only Authentication in my Xamarin.IOS Unified App to display a list of Tweets from a TwitterAccount using the Search option of this nice library. However, when executing the simple search, I…
Hutjepower
  • 1,241
  • 12
  • 17
0
votes
1 answer

LinqToTwitter. Favorites - Obtain all

I have written the code for obtaining a set of a users favourites, however, what's not apparent is how I can page/cursor through these to obtain, say, a users very first set of favourites. The cursor value is always 0 and max/since ID are null. Is…
Nathan Smith
  • 8,271
  • 3
  • 27
  • 44
0
votes
2 answers

LinqtoTwitter TweetAsync never returns in ServiceStack App

When using LinqToTwitter the status update gets posted to twitter with no problems, however the route times out and when debugging the if statement after the await line the debugger never reaches that point. What can I do to fix this? async public…
Piotr Tomasik
  • 9,074
  • 4
  • 44
  • 57
0
votes
1 answer

Updating Twitter status using LinqToTwitter

here's what set out to do: Make an MVC app on which the user clicks a button and is taken to the Twitter login page After giving the credentials the user is redirected to a second page On the secong page there is a text box and a 'Tweet'…
Codehelp
  • 4,157
  • 9
  • 59
  • 96
0
votes
1 answer

Error with WebFormsSearchDemo: "JsonData instance doesn't hold an int"

I'm using the WebFormsSearchDemo project. When I try doing a search it errors out with the following details: JsonData instance doesn't hold an int Description: An unhandled exception occurred during the execution of the current web request.…
Phill Healey
  • 3,084
  • 2
  • 33
  • 67
0
votes
1 answer

Web API not returning response after LinqToTwitter query

I have an issue where after making a query to twitter via the LinqToTwitter library from within a web api controller, my code stops executing and the web api action fails to return a response. I suspect that there is possibly some sort of conflict…
user1206480
  • 1,798
  • 3
  • 28
  • 45
0
votes
1 answer

Can not assign consumer keys

This problem is in regards to LinqToTwitter. I am trying to make a new instance of MvcAuthorizer but I keep getting a null exception when trying to assign the keys to the credential store. Here is the specific error: An exception of type…
user1206480
  • 1,798
  • 3
  • 28
  • 45
0
votes
1 answer

LinqToTwitter status update only works sometimes

I'm trying to send a tweet using LinqToTwitter. My problem is that it almost never works. I've gotten it to work maybe three times out of thirty, and usually that's when I try to debug. I'm thinking it might have something to do with timing and…
The Jonas Persson
  • 1,726
  • 1
  • 17
  • 36
0
votes
1 answer

How to get most Retweeted Tweet using Linq To Twitter

Is it possible to retrieve the tweet that is most retweeted? I searched out for the solution but did not any find any clue, Any suggestion would be helpful. Thanks
Ammar Khan
  • 2,565
  • 6
  • 35
  • 60
0
votes
1 answer

How to get Mentions of other user using Linq To Twitter

I want to get mentions of a any user using linq to twitter api. I have a code which brings back the user time line, but I want to get only mentions of a user, one of the method that is Mention Timeline can only be used to get mentions for…
Ammar Khan
  • 2,565
  • 6
  • 35
  • 60
0
votes
1 answer

LinqToTwitter User Stream

Having seen this post : Streaming Tweets with LinqToTwitter I have this WebForms code: protected void uxBtnGetTweets_Click(object sender, EventArgs e) { DataManager dman = new DataManager(); UsersOpenAuthData data =…
Serexx
  • 1,232
  • 1
  • 15
  • 32
0
votes
1 answer

Get Twitter Home Time Line for a User by using his ScreenName

Is there any way, I can get the Home Time line for a user by passing his screenName? I currently have a code to get the timeline for authenticated user. But I also want to get for other users by using the same authenticated account. Is it possible?…
Ammar Khan
  • 2,565
  • 6
  • 35
  • 60