Questions tagged [linq-to-twitter]
246 questions
0
votes
1 answer
using LINQ to Twitter to read public tweets, do i need to register my app at Twitter
I want to read tweets from a public account (the public twitter account shows delays in the public transport).
I am planning to use LINQ to Twitter for that reason.
The question is: do I need to create an 'application' at the Twitter dev portal for…

Michel
- 23,085
- 46
- 152
- 242
0
votes
1 answer
Pinterest and Klout Twitter Integration
I noticed that Pinterest and Klout does there Twitter authenticatio/signin differently and was wondering if people here knew why.
If you sign into Pinterest with your Twitter account, you have to authorize the app. Then if you log out and then log…

Mr Jones
- 181
- 1
- 3
- 12
0
votes
1 answer
Getting error with Linq to Twitter - JsonData instance doesn't hold a string
I am now getting getting this error with on page that i embed a tweet - JsonData instance doesn't hold a string
Using Linq to twitter
var embeddedStatus =
(from tweet in ctxTwitterContext.Status
where tweet.Type ==…

Ashok Padmanabhan
- 2,110
- 1
- 19
- 36
0
votes
1 answer
Linq to Twitter Authenticated But Getting 215 "Bad Authentication Data"
I have been using Linq to Twitter for Authenticating with OAuth for the Twitter API 1.1.
I set my credentials and then pass them to Linq to Twitter which states I that isAuth returns true. However, at run time I receive at 215 "Bad Authentication…

Dadles
- 119
- 1
- 1
- 10
0
votes
1 answer
Twitter 1.1, Authentication and Display of Search Results
I am confused about this upcoming Twitter API 1.1 change and how to re-implement functionality like that that used to be provided by jquery widgets like http://tweet.seaofclouds.com/ and http://thomasbillenstein.com/jTweetsAnywhere/.
I have been…

FirstDivision
- 1,340
- 3
- 17
- 37
0
votes
1 answer
How do I cache Linq to Twitter OEmbed endpoint result?
I am using the oembed feature in L2T to embed tweets in an asp.net app. Twitter recommends that the rsult be cached since it is rate limited. How do I cache Linq to twitter oembed results? Can i use page caching or profile caching or is there a Linq…

Ashok Padmanabhan
- 2,110
- 1
- 19
- 36
0
votes
1 answer
Windows Phone Linq2Twitter - Getting an authorized user's screen name, id, and name?
I'm a noob in LinQ and having troubles with Linq2Twitter and Twitter API in general.
I cannot understand how to get an authorized user's screen name, id, and name after a successful authorization.
I searched discussion threads online and the only…

user1076731
- 203
- 3
- 14
0
votes
1 answer
Simple - LinqToTwitter objects & properties
I am attempting to use LinqToTwitter for the first time and I have a question about it's objects & properties.
If anyone has a link to a list of objects & their properties, that would work perfectly.
For now, I am trying to use THIS as a guide. It's…

MCwa
- 87
- 1
- 6
0
votes
1 answer
Display an entire list in ListView (including all properties) without Layout & Item Template
I am playing around with a new Twitter NuGet package (LinqToTwitter), which uses a linq query to return data. I haven't been able to find any documentation that shows all possible return types from a statement such as the following: (I got this from…

MCwa
- 87
- 1
- 6
0
votes
1 answer
Getting all latest tweets c# console application
How can i at least get 3200 latest tweets from a public timeline? this is what i have done currently but it only returns me latest 200 tweets.
void GetUserTimeLine(TwitterContext ctx) {
var statusTweets =
from tweet in…

10e5x
- 909
- 4
- 15
- 27
0
votes
1 answer
Send Private message with LinqToTwitter
Hi i want to send private message with linqToTwitter, here is my code :
var auth = new MvcAuthorizer
{
Credentials = new InMemoryCredentials()
{
ConsumerKey = TwitterClient.ConsumerKey,
…

ucef
- 557
- 3
- 10
- 27
0
votes
1 answer
Retrieve userId and send private message with linqtotwitter
I want to send private message to Twitter with my web app in asp.net mvc3. I was doing the authorization with oauth, here is my code:
in AccountController:
public ActionResult LogOn()
{
credentials.ConsumerKey =…

ucef
- 557
- 3
- 10
- 27
0
votes
1 answer
Error 401 Not Unauhtorized LinqToTiwtter API
I Follow the demo for linqtotiwwter.codeplex.com
I tried to fallow the demo webformrtimeline so I wrote this code for a DotNetNuke Module when a push the bottom btnAutorizar for beginauthorization always the response is Error 401 Unauhtorized . …

Alejandro Garcia
- 115
- 3
- 10
0
votes
1 answer
Get all followers using LINQ to Twitter
I'm using LINQ to Twitter API for gathering followers for specific users on twitter.
I am able to get all IDs, and with those IDs I can request their screen name and other properties I need.
I do this in a batch of 100 users (as I understand - 100…

Andrej
- 736
- 2
- 14
- 35
0
votes
1 answer
Post in the wall of a follower
How to update status of a specific user on twitter using LinqToTwitter
I tried this :
twitterCtx = new TwitterContext(auth);
twitterCtx.UpdateStatus("Welcom " + DateTime.Now.ToString(), "userId");
the probleme is that update status of all my…

Victor
- 235
- 1
- 5
- 14