Questions tagged [linq-to-twitter]
246 questions
1
vote
0 answers
authentication via the Twitter API
I have a method that sends messages to friends, as follows:
public virtual void SendMessage(Identity identity)
{
var authent = new MvcAuthorizer
{
Credentials = new SessionStateCredentials()
{
…

Victor
- 235
- 1
- 5
- 14
1
vote
3 answers
Find all followers for a user using Linq to Twitter?
How can I find all the followers a Twitter user has using Linq2Twitter?
All I can find in the documentation is a reference to the .Following property, not the .Followers property.
var result = from search in context.List
where…

Only Bolivian Here
- 35,719
- 63
- 161
- 257
0
votes
1 answer
MVC Ajax action Link copies itself and appends, how do i fix
I am using ordered list design to to make my twitter app to view the tweets. Every Time I call the ajax insert, it puts puts another copy of the ajax link on the page . I am just trying to get the next set of tweets from the controller and…

Michael Hahn
- 143
- 1
- 5
- 12
0
votes
0 answers
Can LINQ to Twitter or Tweetinvi be used with a bearer token?
I'm trying to access Tweeter API v2 to get the sampled stream. I created an app in the dev portal and have the:
API Key
API Key Secret
Bearer Token
Access Token
Access Token Secret
The samples code that Tweeter provides work fine with just a…

JSWilson
- 1,113
- 1
- 11
- 28
0
votes
0 answers
LinqToTwitter rate limits for sending DMs
After calling TwitterContext.NewDirectMessageEventAsync, the values for RateLimitCurrent, RateLimitRemaining and RateLimitReset are always -1.
From the Twitter docs, it appears the rate limit for POSTing direct messages is 1000 per 24 hour window.…

Andy Uzick
- 81
- 5
0
votes
1 answer
LinqToTwitter: How to return more than 20 followers?
How can I modify this query to return all of a users followers as this only returns 20?
var friendship = await twitterCtx.Friendship.Where(f => f.Type == FriendshipType.FollowersList)
…

Sperick
- 2,691
- 6
- 30
- 55
0
votes
1 answer
linq-to-twitter Twitter flood get
I tried the code below but again it wasn't exactly as I wanted.
Only 1 pearl flood is coming. There are 90 floods.
RT ones should not come and should only come flood by call.
as an example I shared the picture. What do I have to do in this…

Ali Yılmaz
- 1
- 7
0
votes
1 answer
LinqToTwitter: direct_messages/events example?
I've been told that LinqToTwitter is updated to include the twitter new API for direct_messages/events.
Though, for hours of searching and googling I couldn't find one good (ASP .Net C#) example of using LinqToTwitter (starting from the…

AKO
- 131
- 1
- 11
0
votes
1 answer
Why twitter token gets expired?
I have a twitter bot that uses LinqtoTwitter it works perfectly fine but when i start it after almost 20 reply(comment) on other users tweets the token gets expired without any warning. I changed the intervals from every 5 min to every 10 minutes…

Manny Shirazy
- 128
- 1
- 7
0
votes
1 answer
how to reply to a tweet using linqtotwitter
I'm trying to reply to a tweet using this method:
twitterCtx.ReplyAsync(statusid, "test");
However, it just posts a new tweet on my page. I can reply to my own tweet using the above code but it does not work for other people's tweet.
How can I…

Manny Shirazy
- 128
- 1
- 7
0
votes
1 answer
LinqToTwitter.TwitterQueryException: Bad Authentication Data
Hi I've gone through the official LinqToTwitter docs. I'm using single user authorization to get all tweets. But still getting "Bad Authentication" exception. What's wrong in the code?
private async void GetRecentTweets()
{
var auth =…

Umar Khan
- 1
- 1
0
votes
1 answer
LinqToTwitter UploadMediaAsync "media type unrecognized."
I'm receiving the following error when trying to upload an image to twitter via LinqToTwitter:
LinqToTwitter.TwitterQueryException: {"request":"/1.1/media/upload.json","error":"media type unrecognized."}
Here is the code I'm using to call the…

Alec
- 946
- 1
- 11
- 22
0
votes
1 answer
Building a Twitter Search Box With Search Suggestions
I am developing a site that is integrated with Twitter content and I would like to enhance my search box providing search suggestions for hashtags and handles as the user types. Is there any way to get this autocomplete data generated from…

VMh
- 1,300
- 1
- 13
- 19
0
votes
1 answer
Linq2Twitter search missing protected tweets
I'm using Linq2Twitter and want to get all tweets with a certain hashtag from any public tweets and any protected tweet of someone I follow. I have setup my connection using a SingleUserAuthorizer, using my consumer key, secret, access token and…

Greg
- 3,442
- 3
- 29
- 50
0
votes
1 answer
Does LinqToTwitter support Replay and/or Backfill filtering?
Does LinqToTwitter support Replay and/or Backfill filtering in v4.1, I can't work out how to do it when using StreamingType.Filter.

Confused
- 869
- 1
- 7
- 16