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

How to get Tweets using Twitterizer in asp.net?

I am using twitterizer2 to login twitter using Asp.net.I am able to login using twitterizer,but unable to get the tweets from my timeline which are tweeted by me and othres too.
snehad
  • 127
  • 11
0
votes
0 answers

to get twitter followers count to my web application Asp.net c#

I have to get twitter followers count by using REST API v1.1 by asp.net and c#.i got credentials and tried but getting 401 exception.i tried using twitterizer.
user2514945
  • 11
  • 1
  • 3
0
votes
1 answer

Get status ID's using Twitterizer2

I am currently writing an application that is posting Tweets to my Twitter timeline using Twitterizer. However I would also like to have the option to delete multiple Tweets. I have managed to delete individual Tweets by manually retrieving the…
Ebikeneser
  • 2,582
  • 13
  • 57
  • 111
0
votes
0 answers

Dealing with linkified text in vb.net

im dealing with some linkified text using twitterizer. i get the links in the form of html, so: any ideas on how i can just display them as clickable links?
MWild
  • 1
  • 2
  • 4
0
votes
1 answer

Using Twitterizer to display the outbound tweets, not replies

Ia m using twitterizer to diplay tweets on the website , but the issue its showing all the tweets ,i just want to show the tweets by user not the replies, the code i am using is: if (!Page.IsPostBack) { try { …
Mr A
  • 6,448
  • 25
  • 83
  • 137
0
votes
1 answer

cant retrieve hometimeline using twitterizer in vb.net

I'm trying to build a desktop twitter application. I've got the oauth thing down, and can post status' no problems. I'm not trying to retrieve a users home timeline but am having no such luck. Any help is greatly appreciated. Here's my code: …
MWild
  • 1
  • 2
  • 4
0
votes
1 answer

C# - "Invalid Token" using Twitterizer

I'm having issues with this piece of code: OAuthTokens tokens = new OAuthTokens(); tokens.AccessToken = "****"; tokens.AccessTokenSecret = "****"; tokens.ConsumerKey = "****"; tokens.ConsumerSecret = "****"; Small program (as of request): //cutted…
0
votes
1 answer

Twitterizer fails when using geotags or uploading media

So I noticed two bugs in Twitterizer: 1. When specifying Latitude, Longitude, and a Place ID in the StatusUpdateOptions, the Longitude is dropped and retains its default value, 0, essentially breaking the geotag feature. 2. When using geotags while…
Peter W.
  • 2,323
  • 4
  • 22
  • 42
0
votes
1 answer

C# Twitterizer Streaming GET User

How can I get tweets live with the Twitterizer.Streaming.dll? (I only need the content of the tweet, without the user) I know that I have to do: static void NewTweet(TwitterStatus tweet) { Console.WriteLine(string.Format("New tweet: @{0}",…
SoBiT
  • 408
  • 5
  • 18
0
votes
1 answer

how to get user timeline using twitterizer2

I am using twitterizer2 to try and get a users recent few tweets and then write them to a table using oAuth not the users screen name, but i am new to twitterizer so i don't know how to do this. var step =…
Wahtever
  • 3,597
  • 10
  • 44
  • 79
0
votes
1 answer

how to get public timeline in twitterizer for WPF

I can get users tweets in my WPF application. I tried publictimeline with all overloaded methods but all are giving same problem System.NullReferenceException but when i try to get public tweets(public timeline); it fails. Below is my code. …
Raza Ahmed
  • 2,661
  • 2
  • 35
  • 46
0
votes
1 answer

How can I avoid asking twitter to grant access for my app everytime the user signs in to my WPF program using twitterizer?

I'm using twitterizer to signin to my wpf program. Every time when the program is executed, twitter generated pin is stored in a variable and then app runs. Is it possible to authenticate only once and then remember that approval? If possible, then…
Raza Ahmed
  • 2,661
  • 2
  • 35
  • 46
0
votes
3 answers

Creating tweet with Twitterizer raises WebException 401

I am using Twitterizer, and am trying to get my ASP.Net app to upload reported traffic incidents to the official Twitter account. I have looked at similar questions at SO, and the I tried all the recommendations (specify call-back url, check for…
Lee
  • 8,354
  • 14
  • 55
  • 90
0
votes
0 answers

Twitterizer on Mono - call to UpdateWithMedia hangs

I have been using mono and the excellent Twitterizer libraries to post tweets from my Raspberry Pi. The goal being to tweet pictures captured by a webcam periodically. The problem I have is that when I make a call to "UpdateWithMedia" on mono it…
0
votes
1 answer

Getting new tweet count Only using Twitterizer

let me first say a big thanks for Twitterizer, it's made my dev work much easier. I'll definitely be donating. In my app, I load tweets using a webservice and since I keep a track of the last tweet, I'd like to be able to just get the count of new…
J. Minjire
  • 1,003
  • 11
  • 22
1 2 3
9
10