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

The intended way to reauthenticate with Twitterizer2

I've got a problem where i've been working in TweetSharp on a project, and found it had some limitations i couldn't overcome. Done some research and found Twitterizer can do what I want. I'm having some trouble working out how i re-authenticate with…
Skintkingle
  • 1,579
  • 3
  • 16
  • 28
0
votes
1 answer

Twitterizer dll

I am using Visual Web Developer and trying to use Twitterizer. I have downloaded and extracted the framework and created a reference within my project. When I run the project, the projet tells me that it cannot find TwitterRequest.cs. It appears to…
burntsugar
  • 57,360
  • 21
  • 58
  • 81
0
votes
1 answer

How to get six digit pin number using Twitterizer for Desktop Application

To get this i reference Twitterizer2 library and user below code based on this guideline http://www.twitterizer.net/tutorials/getting-started-with-oauth OAuthUtility.GetRequestToken("consumer key", "consumer secret"); but i don't see that…
seUser
  • 1,093
  • 2
  • 10
  • 21
0
votes
1 answer

Twitterizer returning 401 on TwitterStatus.Update

Good looking library, but it's misbehaving for me.. I've created a twitter app, with read/write permissions, and that all seems good. I was working with full lifecycle oauth management, but am now using the "Access token secret" and "Access token:…
Monsters X
  • 2,638
  • 1
  • 19
  • 21
0
votes
2 answers

How can I search the past week's tweets with Twitterizer?

I want to search the tweets of past week using tags. For example, if I write "Google" in the text box, the code should return every tweet which has the word "Google" in it and has been posted within past 7 days, regardless of who tweeted it. I am…
0
votes
1 answer

Using Stored Twitter access_tokens with Twitterizer

I am using C3 & the latest twitterizer api. I have managed to get the user to authenticate & authorize my twitter application after which I persist only the access_token, access_token_secret and access_token_verifier. The problem I have now is that…
Mark Redfern
  • 357
  • 1
  • 3
  • 24
0
votes
2 answers

Twitterizer2 1.2.4 Streaming API exception - Unexpected end when deserializing object

Any help would be appreciated. I'm getting an exception thrown during deserialization inside JSON.Net: Unexpected end when deserializing object. Line 216, position 2. My calling code: var asyncResult = s.StartPublicStream(streamErrorCallback,…
mellodev
  • 1,597
  • 12
  • 20
0
votes
3 answers

Twitterizer.net - update post Unauthorized, Timestamp out of bounds

I am using Twitterizer .net in order to make a console app in c# and post some twit updates from my twit app. I created the app in twitter and have all the right tokens set In my program I send twitter status like this public static bool Twit(string…
Spyros
  • 540
  • 1
  • 7
  • 21
-1
votes
4 answers

How to update Twitter status from my ASP.NET page with C#.NET?

This my button click code, but the status is not updating in Twitter. Please help me out. protected void btnTwitt_Click(object sender, EventArgs e) { string twitterMsg = txtShout.Text; OAuthTokens tokens = new OAuthTokens(); …
sambit
  • 19
  • 3
-1
votes
2 answers

how to update twitter status from my asp.net web page

I have created an asp.net web page and I am using twitterizer.framework.dll. Below is my c# code. protected void btnTwitt_Click(object sender, EventArgs e) { //OAuthTokens tokens = new OAuthTokens(); //tokens.AccessToken =…
sambit
  • 19
  • 3
-1
votes
1 answer

Using Twitterizer with C# Desktop Application "The name Request does not exist..."

I am trying to add a button to a desktop application that will post a picture to twitter. I have found some sample code online that uses ASP.net but it seems when I try to use it in a C# desktop application I'm getting an error with the Request and…
mattc19
  • 678
  • 1
  • 11
  • 23
-1
votes
1 answer

Twitterizer API Questions

I've recently been playing around with the awesome Twitterizer Twitter API using C# WPF in Visual Studio 2008. It's been working the most part, but I do have some questions about it. 1) How can I make it so that the login screen is a different…
David
  • 57
  • 2
  • 8
-2
votes
1 answer

Get Author's name of a Tweet

I want to display a tweet as it is shown in the [url=https://dev.twitter.com/terms/display-guidelines]Display Guideline[/url]. For that, I need to get the name of the author of the tweet. I don't have this info in the TwitterSearchResult: …
Pak
  • 2,639
  • 2
  • 21
  • 27
1 2 3
9
10