Questions tagged [twitterizer]

This tag refers to the Twitterizer open source library by Ricky Smith.

Twitterizer is an open source project for .NET. It provides interaction with the Twitter API with an object oriented structure.

Documentation can be found here.

148 questions
109
votes
7 answers

Opening project in Visual Studio fails due to nuget.targets not found error

So I downloaded Twitterizer from http://www.twitterizer.net/downloads/ I try to open it in Visual Studio and get all these nuget errors: The imported project "C:\Twitterizer\.nuget\nuget.targets" was not found. Confirm that the path in the
Barka
  • 8,764
  • 15
  • 64
  • 91
29
votes
4 answers

TweetSharp - Where did FluentTwitter go?

In TweetSharp 1.0 there was FluentTwitter, TweetSharp 2.0 doesn't seem to have this anywhere, it doesn't even seem to be deprecated but rather just deleted altogether, can anyone point me if this part of TweetSharp is still available in 2.0 and how…
bevacqua
  • 47,502
  • 56
  • 171
  • 285
17
votes
4 answers

c# - "The authentication or decryption has failed." error while using twitterizer in mono

why i get this error Unhandled Exception: Twitterizer.TwitterizerException: Error getting response stream (Write: The authentication or decryption has failed.): SendFailure ---> System.Net.WebException: Error getting response stream (Write: The…
Julio Abdilla
  • 259
  • 1
  • 4
  • 7
10
votes
2 answers

The remote server returned an error: (401) Unauthorized. Twitter oAuth

I am trying to make work twitter oAuth with twitterizer, but I am unable. I am getting the following error: The remote server returned an error: (401) Unauthorized. When my callback url is a localhost. If my callback url is oob, for the pin flow…
elranu
  • 2,292
  • 6
  • 31
  • 55
10
votes
2 answers

Twitterizer 2 and C# - Namespace could not be found

I have a silly problem with Twitterizer2 and probably me :) . I add the reference twitterizer 2.3.1 from my downloads directory along with the newtonsoft one by right clicking on references and browsing to find them. I then add using…
7
votes
4 answers

Twitter - Time Zone of the Tweeet

What is the time zone used for tweets in Twitter API?
MNVR
  • 865
  • 4
  • 16
  • 30
5
votes
4 answers

Get photos from twitter in C#?

I'm trying to implement a feature in a .Net WPF application to automatically display photos from twitpic when users post them to my hashtag. I'm using the Twitterizer2 API library, all the tweets coming from my search have their links as t.co links…
KamalSalem
  • 495
  • 2
  • 8
  • 21
4
votes
1 answer

Twitterizer TwittterTimeline NewtonSoft.JSON.JsonSerializationException problems

The following code throws a NewtonSoft.JSON.JsonSerializationException {"Unexpected token when deserializing object: StartObject. Line 1, position 1884."} Twitterizer version :2.4.0.26532 NewtonSoft.Json = 4.0.7.0 (installed using the Nu-GET add in…
scoob
  • 1,369
  • 1
  • 17
  • 29
4
votes
3 answers

Twitterizer version for recent Twitter API 1.1

I have a question to whoever using Twitterizer as a component to communicate with Twitter API. I see recent update from Twitter site, to API version 1.1 I have an app built using Twitterizer version 1. Please let me know if Twitterizer has updated…
swcraft
  • 2,014
  • 3
  • 22
  • 43
3
votes
1 answer

How can I avoid asking twitter to grant access for my app everytime the user signs in to my website?

I am using Twitterizer which works great. I have a website (.NET 4, C#) where a user visits and signs-in... I store tokens e.t.c everything works great. The question is how can I avoid asking the user to grant access to my app via twitter since I…
RRG
  • 457
  • 5
  • 18
3
votes
1 answer

Twitterizer- The remote server returned an error: (401) Unauthorized

I'm following Ricky's Twitterizer example (with some modifications on my end), but I'm getting a "401 Unauthorized" exception when I try to send the authentication request: {Twitterizer.TwitterizerException: The remote server returned an error:…
Kiril
  • 39,672
  • 31
  • 167
  • 226
3
votes
2 answers

How to tweet in C#

So I am very new to C#, I started learning it a few days ago and I would like to know how you can tweet with C#. I have searched google a lot, looked at some YouTube videos, but they are all old. I found Twitterizer.net, which has this…
3
votes
2 answers

Excluding @user replies in Twitterizer

I'm using the excellent Twitterizer to get a user's timeline, however I'd like to exclude @user replies from this returned collection. The Twitter API offers a 'exclude_replies' parameter, but I can't find anything similar in the Twitterizer…
Jonathan
  • 13,947
  • 17
  • 94
  • 123
3
votes
2 answers

Twitterizer - Exception while GetAccessToken()

my twitterizer version is 2.3.3.21964 (donwloaded from nuget). I have these simple 2 lines on the first Controller action: token = OAuthUtility.GetRequestToken("XXX", "YYY", "http://test.roadevents.it/account/twitter_token",null); return…
hjeldin
  • 53
  • 7
3
votes
2 answers

Twitter OAuth doesn't redirect back to my web site properly

Disclaimer: I'm still starting out with MVC3 (and OAuth in particular). I might be making a basic mistake. The Problem My Controller sees that the cookie isn't stored [Note: yes, I'm using cookies per a different discussion. Let's accept that and…
SeanKilleen
  • 8,809
  • 17
  • 80
  • 133
1
2 3
9 10