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
3
votes
1 answer

Twitterizer - How to post a reply?

I'm using the Twitterizer wrapper for a new ASP.NET project. I have a gridview showing me the twitter timeline. I have a button in every row to reply to a specific status message. But i just reply a message like this: "@screenName this is a reply".…
ThdK
  • 9,916
  • 23
  • 74
  • 101
3
votes
2 answers

Integrate Twitter in Asp.net

protected void Page_Load(object sender, EventArgs e) { var oauth_consumer_key = "pUw6DN1vh2PRhqIQd0w"; var oauth_consumer_secret = "uCrFLs6x3LlKd6G9YZ2XSzvjiQZmfAM1z3TTEus"; if(Request["oauth_token"] ==…
ND's
  • 2,155
  • 6
  • 38
  • 59
3
votes
3 answers

How to get twitter user timeline in C# using Twitterizer

i have the following code. Twitter t1 = new Twitter("twitteruser","password"); TwitterUser user = t1.User.Show("username"); if (user != null) { TwitterParameters param = new…
Adeel
  • 19,075
  • 4
  • 46
  • 60
3
votes
1 answer

I need an alternative of Twitterizer for .NET Framework 2

I have tried to use Twitterizer but it can only be compiled in .NET 3.5 and 4. I need to update a project that needs to recover the tweets of a user but it is a .NET 2.0 Sharepoint Project. Do you know any library?
netadictos
  • 7,602
  • 2
  • 42
  • 69
3
votes
1 answer

Unable to parse JSON error using Twitterizer TwitterStatus.Show method

Running this code: var statusResponse = TwitterStatus.Show(tweet.Id); gives an error message: Unable to parse JSON in the statusResponse object and the ResponseObject comes back as null. Not sure how to fix this. Any ideas?
2
votes
1 answer

How to fix "Unauthorized" error message from Twitterizer?

I downloaded the latest version of Twitterizer and I have the below code which tries to send an update a tweet to the twitter but it fails with "Unauthorized" Response status. What could be the reason? The keys were working before, why is it giving…
The Light
  • 26,341
  • 62
  • 176
  • 258
2
votes
1 answer

How to send tweet to target user?

I have some code: internal TwitterResponse UpdateTweet(string Tweet) { TwitterResponse tweetResponse = null; OAuthTokens tokens = new OAuthTokens(); tokens.AccessToken =…
BILL
  • 4,711
  • 10
  • 57
  • 96
2
votes
2 answers

Posting tweets using Twitterizer

I am using twitterizer for posting tweets to a user's twitter account. It works fine but it is fully based on tokens (as you all know). This doesn't work in my case because Twitterizer redirects the user to the twitter page where the user logs and…
Jaggu
  • 6,298
  • 16
  • 58
  • 96
2
votes
2 answers

Twitter OAuth token storage without user database?

I'm attempting to throw together a pretty quick mash-up that I think would be useful for folks, and I'd like to make use of Twitter communication. This is my first experience with OAuth, and I've chosen the Twitterizer library to get the job…
SeanKilleen
  • 8,809
  • 17
  • 80
  • 133
2
votes
2 answers

Twitterizer: "Could not authenticate with OAuth"

I'm using Twitterizer library for posting tweets within a web-site into my twitter account. It works just fine on site, running on my local server (authenticates with OAuth through twitter app and posts a tweet). But when I'm trying to post a tweet…
2
votes
1 answer

Proxy Authentication for Twitterizer2 in C#

Currently the Code i am using to update twitter status is as follows... public static void SendMessage(string message) { try { tokens = new OAuthTokens(); tokens.AccessToken = "Some Token"; …
2
votes
2 answers

Error when updating Twitter status with Twitterizer

I have this test application, for twitterizer. var temp = TwitterViewModel.TokenStore; string token = HttpContext.Current.Request.QueryString["oauth_token"]; string verifier =…
JahManCan
  • 601
  • 3
  • 8
  • 19
2
votes
1 answer

Object Reference not set to an instance - Twitterizer

I am trying to get retweets of a tweet using Twitterizer API. Dim accessToken As Twitterizer.OAuthTokens = New Twitterizer.OAuthTokens() accessToken.AccessToken = 'XXXXXXXXXXXXXXXXXXXX' accessToken.AccessTokenSecret =…
MNVR
  • 865
  • 4
  • 16
  • 30
2
votes
5 answers

how to test a twitter api on your local machine

i am using twitterizer to have a web front end to twitter data. I'm trying to figure out how i can test on a localmachine when you have to put in a valid public callback url in your application registration. The twitter page doesn't let you have a…
leora
  • 188,729
  • 360
  • 878
  • 1,366
2
votes
0 answers

Tweetsharp HTTP 403

I have a problem logging on to Twitter using ASP.NET 4 C# and Twitterizer. First I create the TwitterService object TwitterService Service = new TwitterService(key , secret); Then Request the Token: OAuthRequestToken requestToken =…
1
2
3
9 10