Questions tagged [linq-to-twitter]

246 questions
1
vote
1 answer

Visual Studio 2015 - Debug with HTTP connection problems

I have a program (console application) that makes use of LinqToTwitter to read some tweets. When I debug the program I get an error "The underlying connection was closed: An unexpected error occurred in a submission". Message = An error occurred…
1
vote
1 answer

LinqToTwitter I can't catch tweets

I am trying to fetch tweets using the example on GitHub, but I get an error "The underlying connection was closed: An unexpected error occurred in a submission". I can not understand. At first, I created the application on Twitter and took the keys…
DaniloPF
  • 67
  • 7
1
vote
1 answer

Can't search for tweets with LinqToTwitter

I'm starting out a new c# project where I want to extract some tweets, nothing specific at the moment, just to get started... I created a developer user at the Twitter API and created a new app and got all the consumerkey and…
Alonzzo2
  • 959
  • 10
  • 24
1
vote
0 answers

LinqToTwitter: timing issue with video media

I'm using Linqtotwitter version 5. The code below works sometimes, sometimes not. If I put a breakpoint where I've indicated and wait a while, it pretty much always works. When it doesn't work, I get the exception message 'Not valid video'. I…
1
vote
1 answer

Twitter : When i used https://github.com/JoeMayo/LinqToTwitter for auth user , i m not getting any webhook

I created app on Twitter account @ etechice app name = ice_dev environment = dev I used https://github.com/twitterdev/account-activity-dashboard for webhook register and auth user. whenever I auth user with this app, I m getting all the webhook.…
Mahesh Gareja
  • 1,652
  • 2
  • 12
  • 23
1
vote
1 answer

How to query LinqToTwitter with multiple id's at once?

I am using the linqtotwitter function below to get statuses by ID and it works as expected. But I was wondering if there was a way to only call this function once(by passing the collection of id's to the query and the function would return a…
Dev
  • 1,780
  • 3
  • 18
  • 46
1
vote
1 answer

async and await with Twitter direct_messages/events using LinqToTwitter

I'm really stuck in this for days. I'm using LinqToTwitter with ASP.Net C# I'm trying to get the new DirectMessages work, I followed the examples but with no luck. I want the function to work on Button click, so what I tried…
AKO
  • 131
  • 1
  • 11
1
vote
1 answer

C# LinqToTwitter - Empty media entities returned for most tweets

This is my first question, so I want to apologize if I am not doing it correctly. Description I am developing a C# mobile application using Visual Studio for Mac, and already installed the LinqToTwitter nuget package (version 4.2.1). I need to…
1
vote
1 answer

Empty FullText property with Tweetmode.Extended [update May 30th]

I'm programming a .Net Core (2.1 preview, C# 7.3) Streaming Console App with L2T (5.0.0 beta 2) but even with the strm.TweetMode == TweetMode.Extended the query gives "compat" tweets back, the FullText property is empty. You can reproduce this with…
Jaap
  • 665
  • 1
  • 8
  • 19
1
vote
1 answer

linqtotwitter get tweets without video

I am trying to get tweets by using linqtotwitter with c# and there is a task to get 10 last tweets without video content. firstly I have retrieved last 10 statuses like this: var srch = Enumerable.SingleOrDefault((from search in …
e0x3
  • 131
  • 1
  • 1
  • 14
1
vote
1 answer

LinqToTwitter check if a user follows you

I am trying to detect if a user follows my account, or any other account in particular for that matter. So far: var user = await (from u in Session.service.User where u.Type == UserType.Lookup && u.ScreenNameList == f.ScreenName …
Colin Smith
  • 300
  • 2
  • 8
1
vote
1 answer

C# - HttpClient redirects url to login therefore the POST is sent to a false URL

I'm currently using linqToTwitter to authenticate my winforms application with twitter, this is needed to receive the needed informations I will need later on to send a username change request. After the user authenticated himself he should enter a…
steckden
  • 47
  • 4
1
vote
3 answers

Entity Framework throwing an error when adding data without IDs

I've a function which returns a list of tweets. Each element in that list has a lot of data, the tweet's text, location, user information, if it was a retweet, its time, retweet information, picture links, and a lot more data, lists of lists of data…
Asbah Qadeer
  • 61
  • 1
  • 2
  • 9
1
vote
2 answers

TweetIds is always null

I am using a linq-to-twitter query to attempt to get a tweet (status) and reply to that status, but the query always returns ID and TweetIds as null. I attempted to use the statusId, but it went through as a tweet and not a response var tweets = …
QBM5
  • 2,778
  • 2
  • 17
  • 24
1
vote
1 answer

Getting Error Accessing Twitter Data While Using LinqToTwitter

I'm using this code to get name from screen name of twitter users: var users = (from user in twitterCtx.User where user.Type == UserType.Lookup && user.ScreenName == "JoeMayo,LinqToTweeter" select user) …
Hadi Ranji
  • 203
  • 1
  • 2
  • 11