Questions tagged [linq-to-twitter]
246 questions
1
vote
4 answers
search fails with maxid (ulong.max) and sinceid set, but separately it works
the following query works ok if you comment out either the SinceID or the MaxID clause, but when both are included a "bad url" exception is generated.
var maxId = ulong.MaxValue;
var sinceId = (ulong)341350918903701507;
var searchResult =
(
from…

taglius
- 1,237
- 1
- 10
- 26
1
vote
1 answer
How do I return 100 tweets with linq-to-twitter API?
I've been trying to use the twitter API 1.1 Linq to Twitter (for c#) to search for tweets at #something.
This is what I came up with:
var query = (from tweet in twitterContext.Search
where tweet.Type == SearchType.Search &&
…

user1106784
- 153
- 1
- 3
- 10
1
vote
1 answer
LinqToTwitter - IsAuthorized always returns false for ApplicationOnlyAuthorizer
I have an MVC4 web application that uses LinqToTwitter to display Tweets when a user's profile page is visited, if they have a Twitter handle.
For this I use ApplicationOnlyAuthorizer:
var auth = new ApplicationOnlyAuthorizer
{
Credentials = new…

DevDave
- 6,700
- 12
- 65
- 99
1
vote
1 answer
Converting tweet link so that it is embedded in asp.net app
I want to convert a tweet url such as https://twitter.com/LindseyGrahamSC/status/320202348263780352 so that it is automagically embedded. So far the best i have come up with is to use a short code type syntax like [tweet:320202348263780352] which…

Ashok Padmanabhan
- 2,110
- 1
- 19
- 36
1
vote
1 answer
I need to check whether user is authenticated or not by using linqtotwitter library in windows8
I need to verify that user is successfully authenticated or not to his/her twitter account by using linqtotwitter library.Normally iam able to login into the twitter account by opening the webview. but i am not able to find whether he/she is…

raj
- 743
- 6
- 21
1
vote
1 answer
Converting words to hashtags when posting to Twitter
I currently use LinqToTwitter to send posts to Twitter. I'd like to convert words in the title of the post to hashtags when it gets fired off as tweet so something like - "Firefox is cool" is the blog post and becomes #Firefox is cool…

Ashok Padmanabhan
- 2,110
- 1
- 19
- 36
1
vote
1 answer
Can't get screenName of a list of user ID because of the API rate Limits. What can I do? linqtotwitter c#
I have a function in my application that find IDs of a user followers.
But I want to get the screenName of these followers.
I tried to get directly followers.screenName but it doesn't work because followers type is SocialGraph and not string!
I…

Kevser61
- 95
- 9
1
vote
1 answer
list of users that have mentioned the searched user. (Twitter)
I have a problem when I want to display users that have mentioned the searched user on my application.
I'll explain:
At first when I launch the program I need to allow the application to use my account to allow me doing some search.
After that, I…

Kevser61
- 95
- 9
1
vote
2 answers
Get all followings using LINQ to Twitter
I've just started a Windows Phone app, and I need to get all the user's followings.
I tried this :
SharedState.Authorizer = pinAuth;
ITwitterAuthorizer auth = SharedState.Authorizer;
TwitterContext twitterCtx = new TwitterContext(auth);
var…

TDK
- 161
- 2
- 13
1
vote
1 answer
Linq-To-Twitter Bad Authentication
So i've been using Linq-To-Twitter to add Twitter Integration to my Windows 8 Store App, Moreso for playing around with it, but i've come accross a problem. My current authentication codeblock is
var auth = new WinRtAuthorizer
{
…

user1890266
- 213
- 1
- 2
- 5
1
vote
2 answers
synchronous authorization in WinRt
I am basically trying to run my authorization process for my WinRt app synchronously, but everything I've tried appears to deadlock the app after authorization on the MainPage, preventing navigation to the HomePage. Can't seem to figure it out. …

user1206480
- 1,798
- 3
- 28
- 45
1
vote
1 answer
Linq To Twitter error - "The remote server returned an error: (400) Bad Request"
I'm just trying to simply get the 3 latest tweets for a Twitter account:
List tweets = new List();
var twitterCtx = new TwitterContext();
statusTweets =
tweet in twitterCtx.Status
where tweet.Type == StatusType.User &&
…

Steven
- 18,761
- 70
- 194
- 296
1
vote
3 answers
Getting 1000 latest tweets and writing it into a log file
i have been trying to get the latest 1000 tweets. I have read all the documentation on LinqToTwitter. I tried writing my own:
void GetUserTimeLine(TwitterContext ctx)
{
List tweetList = new List();
String[]…

10e5x
- 909
- 4
- 15
- 27
1
vote
1 answer
LINQ to Twitter setting users account image c#
I am attempting to fetch the users profileImageURl and bind it to an image. I have got the following C# code:
namespace IIVVYTwitter
{
public sealed partial class MainPage : Page
{
public MainPage()
{
…

BradStevenson
- 1,974
- 7
- 26
- 40
1
vote
2 answers
How to get tweets from a multiple of friends?
this is the my first question in SO witch I use alot btw :). this is the problem/challenge:
I'm building a service where the user can select a number of his facebook and twitter friends, he will then get a combined list of tweets and statuses of…

MQoder
- 712
- 8
- 21