Questions tagged [linq-to-twitter]
246 questions
13
votes
1 answer
Twitter API application-only authentication (with linq2twitter)
I need to implement Twitter API application-only authentication and I've searched through linq2twitter oauth samples and stackoverflow questions, but I didn't find anything helpful about it.
Is it possible to implement this kind of authorization…

Festys.rpo
- 193
- 1
- 7
6
votes
3 answers
How To Get All Tweets on Hashtag using LinqToTwitter
I'm trying to get all tweets(count total tweet number) belong to hashtag. My function is here, how to I use maxID and sinceID for get all tweets. What is the instead of "count"? I dont'know.
if (maxid != null)
{
var…

Batuhan Tozun
- 487
- 1
- 5
- 11
6
votes
1 answer
How to use linqtotwitter V3
Alright I recently upgraded to V3 but it broken many things
How can I fix these ?
Number 1 :
This is not working anymore no such definition as Credentials and InMemoryCredentials
var auth = new SingleUserAuthorizer
{
Credentials = new…

Furkan Gözükara
- 22,964
- 77
- 205
- 342
6
votes
1 answer
How to manage a mutex in an asynchronous method
I have ported my old HttpHandler (.ashx) TwitterFeed code to a WebAPI application. The core of the code uses the excellent Linq2Twitter package (https://linqtotwitter.codeplex.com/). Part of the port involved upgrading this component from version…

Neilski
- 4,385
- 5
- 41
- 74
4
votes
1 answer
LinqToTwitter v5.1.2 AspNetAuthorizer doesn't contains a definition for CredentialStore
In my website .Net Framework 4.8, when I update from LinqToTwitter v5.1.1 to 5.1.2 I get an error message when I try to create a new instance of AspNetAuthorizer saying:
"AspNetAuthorizer doesn't contains a definition for CredentialStore"
and…

Javier Rusansky
- 75
- 1
- 4
4
votes
1 answer
How to use large numbers in angular 5+?
I am using angular 5 with .Netcore 2.0. I am using the API controller to process tweets(LinqToTwitter). The tweets comes through my typescript from the controller all fine apart from the statusID which is 19 digits long.
The statusID should…

Dev
- 1,780
- 3
- 18
- 46
4
votes
2 answers
How to get tweets older than few months?
I am retrieving tweets using LINQ to Twitter 4.1.0 with particular hashtag. But the problem that I am facing is that i am getting only 600 tweets.
I want to get tweets that are older than few months.
Can anyone suggest me, how to do this?
…

Ranjana
- 85
- 9
4
votes
1 answer
How can I get the details of a tweet?
I need to show tweet details (e.g tweet) when user click on , so I'm trying to get this id using linq2twitter:
public static IEnumerable GetLatestTweets() {
var auth = new…

Andrew Berezovskyi
- 43
- 5
4
votes
1 answer
Error : Could not load file or assembly 'System.Net.Http.Primitives, Version=1.5.0.0...'
I am using Windows Azure Web Jobs to execute my method to get the tweets using LinqToTwitter. My web.config file has
…

sravan
- 93
- 1
- 8
4
votes
1 answer
Return all tweets from my timeline
I wish to return ALL the Tweets I have ever posted on my timeline.
I am using the Linq To Twitter library as so -
var statusTweets =
from tweet in twitterCtx.Status
where tweet.Type == StatusType.User
…

Ebikeneser
- 2,582
- 13
- 57
- 111
4
votes
2 answers
LINQ to Twitter: Get more than 200 tweets
I'm trying to retrieve a users tweets from the last 2 months. However, LINQ to Twitter limits the amount of tweets you can retrieve to 200. Is there a way to retrieve more?
The Twitter api allows paging,…

user1797792
- 1,169
- 10
- 26
4
votes
2 answers
How to update status on twitter using C# and LINQ to Twitter library
I am writing an Metrol Style App to update status on my Twitter. I use LINQ to Twitter library. But I don't understand why my app throws exception 401 Unauthorized. Here is my code:
private void UpdateStatus()
{
// configure the OAuth object
…

Van Duoc
- 65
- 1
- 8
3
votes
1 answer
Linq to twitter error
I'd like to retrieve an user's statuses to display them in a listbox (in a webform).
Here is my code :
var twitterCtx = new TwitterContext();
var publicTweets =
from tweet in twitterCtx.Status
where tweet.Type == StatusType.User && tweet.ScreenName…

Thomas KiTe Trentin
- 600
- 1
- 5
- 19
3
votes
1 answer
c# - Listing Friends -- Hitting auth failure mid-process
So, I'm trying to the friends of all of someone's followers. Not recursively digging, just that single level.
I'm able to pull the followers just fine (and it looks like it can handle more than 75k followers, so I'm 90% sure I have the rate limits…

John Eddy
- 51
- 5
3
votes
1 answer
How to search tweets using linqtotwitter on an MVC project
How do I search for tweets using linqtotwitter on an MVC project, converting this from console to MVC.
var searchResponse =
await
(from search in twitterCtx.Search
where search.Type == SearchType.Search &&
…

Harrison Barker
- 79
- 5