Tagged Questions
This tag refers to the Twitterizer open source library by Ricky Smith.
22
votes
2answers
885 views
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 ...
7
votes
2answers
950 views
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 ...
3
votes
2answers
51 views
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 ...
3
votes
2answers
189 views
How to 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 ...
3
votes
2answers
171 views
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 ...
3
votes
1answer
1k views
The remote server returned an error: (401) Unauthorized. Twitter oAuth
I been trying to make work twitter oAuth with twitterizer, but I cannot. I get the following error: The remote server returned an error: (401) Unauthorized. When my callback url is a localhost. If my ...
2
votes
1answer
66 views
How to send tweet to target user?
I have some code:
internal TwitterResponse<TwitterStatus> UpdateTweet(string Tweet)
{
TwitterResponse<TwitterStatus> tweetResponse = null;
OAuthTokens ...
2
votes
2answers
94 views
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",
...
2
votes
2answers
163 views
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 ...
2
votes
1answer
907 views
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 ...
2
votes
1answer
267 views
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();
...
2
votes
1answer
321 views
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 ...
2
votes
2answers
633 views
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 = ...
2
votes
1answer
283 views
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'
...
2
votes
3answers
6k views
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)
{
...
1
vote
1answer
27 views
How to convert TwitterResponse to something that ListView can read?
I've been googling for a really long time, and there is no example of how to display TwitterResponse object to something that datagrid or listview can display ... anyone has any solution to that ?
...
1
vote
1answer
48 views
TwitterResponse causes hang on Silverlight
Whenever I try and make any Twitter request, my application always hangs. This does not apply to the oAuthUtility though, I have successfully authorized the user to use my application, but whenever I ...
1
vote
1answer
56 views
Twitterizer Search By First and Last Name
I'm using the following function to search in Twitter with Twitterizer
TwitterResponse<TwitterSearchResultCollection> searchResponse = TwitterSearch.Search(query);
This function doesn't work ...
1
vote
1answer
69 views
Get authenticated user profile using Twitterizer?
I'm trying to get the Oauth authenticated user's profile information using Twitterizer.
I believe this should be done using one of the TwitterUser.Show overloaded methods.
The problem I'm facing is ...
1
vote
2answers
143 views
MVC3 C# Beginner in Twitterizer: How to logOn user via Twitter and get some user information?
I downloaded Twitterizer, read documentation, downloaded the samples but as I'm working with MVC3, I'm a little bit lost about how to write the code. Could someone guide me posting code samples on how ...
1
vote
1answer
184 views
ERROR in Twitterizer.OAuthUtility.GetRequestToken() “Value cannot be null. Parameter name: String”
Here's the line where I get that error:
var requestToken = OAuthUtility.GetRequestToken(
_consumerKey,
_consumerSecret,
"http://mysite.com/Twitter/GetToken");
_consumerKey and ...
1
vote
1answer
51 views
Twitterizer: what is the workflow in order to publish messages on user's profile?
as I started to work with Twitterizer in order to publish on someone's wall I am in confusing time.
There is a page, my case, DefaultTwitter.aspx where is link to authenticate on twitter with token ...
1
vote
1answer
206 views
Twitter's OAuth is asking my users to copy a PIN at sign in. Can I automate that step with Twitterizer?
I'm using Twitterizer. I got my Consumer key and Secret, and told Twitter my callback URL. However, after the user clicks permit, he gets a PIN to manually copy back to my application. I'm not even ...
1
vote
2answers
336 views
Help Getting Started with Twitter/OAuth
I'm trying to get up to speed on programming Twitter but am having trouble finding the information I need.
My needs are very modest, I just want to automate posting tweets to several of my own ...
1
vote
2answers
1k views
Twitterizer - Search API Example
Can someone please write up a quick example code on how to search the public twitter timeline for a specific hashtag or keyword or mention using the Twitterizer framework.
Thanks
1
vote
1answer
123 views
Twitter posts counts
I'm using Twitterizer in my application. I want to get counts of all specific tweets. The problem is that I can search only 1 week old tweets only.
1
vote
1answer
542 views
I have Twitter token and secret. I want to get Twitter screen name. how do I do it in Twitterizer?
Hi since there was no response I changed my question.
I have the token and secret from Twitterizer. but i dont have the username. How can I get the username by using these tokens?
the ...
1
vote
1answer
2k views
Getting all twitter followers using twitterizer
I am using Twitterizer 2. in general it does the job very well, but I have one thing missing.
I need to get all the followers of my user. and the method brings ...
1
vote
2answers
1k views
Twitterizer 2.2 Sending help
Hi I am working on sending twitter updates from my asp.net website. I have the authorization down but I am stuck when it gets to sending the tweet here is my code behind:
protected void ...
1
vote
5answers
799 views
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 ...
1
vote
4answers
1k views
ASP.NET Using Twitterizer in Medium Trust
Does anyone using the Twitterizer framework have any experience running it in a Medium Trust environment? I keep getting security exceptions...
Security Exception
Description: The
application ...
0
votes
1answer
34 views
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 ...
0
votes
0answers
14 views
Cannot make Twitter calls using Twitterizer Silverlight/Async
Using the code example on the Twitterizer website I am trying to post a tweet to twitter with this code:
Dim asyncResult As IAsyncResult = TwitterStatusAsync.Update(
tokens.Tokens,
...
0
votes
1answer
48 views
Twitterizer.TwitterUser.IsFollowing returns null
I am using Twitterizer to integrate Twitter into my ASP.NET app. After authenticating the user I am using following code to see if the authenticated user is following a specific user:
...
0
votes
1answer
135 views
Twitterizer throwing an exception: Unexpected token when deserializing object: Integer
I'm encountering a JSON (de)serialization exception when using Twitterizer's LookUp method. The exception states:
Unexpected token when deserializing object: Integer
Here is roughly what my code ...
0
votes
1answer
92 views
Status is over 140 characters
I'm looking at using Twitterizer in my app. I've got it working, however, if a post is made with a URL taking it over 140 characters, twitter does not auto shorten the url with t.co.
Basically, I'm ...
0
votes
1answer
88 views
Rare exception in .net with Twitterizer
When I debug and/or run it on my develop machine it works great, but when I deploy it to a Win2008, I get the following error, any idea?
Server Error in '/' Application.
Value cannot be null.
...
0
votes
2answers
120 views
Twitterizer Search
We are new to Twitter Api / Twitterizer.
We have used the twitter search and then edited the URL as per the Twitter help and everything is fine ( ...
0
votes
1answer
73 views
TwitterTimeline.HomeTimeline only returns my tweets
Why does the console app below, which uses the Twitterizer .NET library, only print out my tweets? As I understand it from Twitter's API documentation it should return tweets from the people I am ...
0
votes
1answer
101 views
twitterizer API Value cannot be null. Parameter name: String ASP.NET
I am using Twitterizer API for accessing twitter related functionality. I have one demo application that works fine with my consumerkey and consumersecret i run this application locally. but when i ...
0
votes
1answer
108 views
Twitterizer bug on FriendsIds function?
I'm trying to retrieve a list of all Twitter friends using the following function:
TwitterResponse tr = TwitterFriendship.FriendsIds(tokens);
for (int i = 0; i < tr.ResponseObject.Count; i++) { ...
0
votes
0answers
78 views
Automating tweets in c# issue
Well, first of all , I want to make a program in c# in which you enter your string in a textbox, and when you push the button named update the string is passed to the method update, I already wrote my ...
0
votes
0answers
563 views
Twitter integration using c# code
I am working with a twitter integration part to update status from my application.
I tried different ways but the authentication error is getting,and I tried with code below I given but in status am ...
0
votes
1answer
240 views
Storing Twitter access token using Twitterizer
I'm trying to store Twitter access token to my database for a specific user, so he doesn't need to approve the application every time he wants to post a new tweet.
I can easily get user access token ...
0
votes
2answers
112 views
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 ...
0
votes
1answer
321 views
Twitterizer - C# Code to Search Tweets From Only Users I Follow
I am currently using Twitterizer to search through public tweets using C#:
private void QueryTwitter()
{
SearchOptions myOptions = new SearchOptions();
myOptions.CacheTimespan = new ...
0
votes
1answer
373 views
Can I call the Twitter Link Service (for url shortening) programatically?
I've just implemented a feature on my site to use the Twitterizer API in C# to make a tweet under a machine account whenever new user content is added to my site.
Works great, but if I call the ...
0
votes
1answer
508 views
Twitterizer OAuth login for desktop app without web UI
I want to write an application which can update an twitter status of an certain twitter account.
The user has to log in to twitter.
I want to make this application with Twitterizer, but since it uses ...
0
votes
2answers
405 views
Users/Friends with twitterizer that don't follow back
I am using twitterizer in an ASP.NET-project. I nned an example (code) how I can use twitterizer to show a list of followers (paged) for a special account that don't follow back.
The query is: Give ...
0
votes
1answer
325 views
How to update Twitter status from behind a PROXY server? Twitterizer2
I am using twitterizer2 for updating twitter status. Its working fine if i am NOT behind a proxy but behind i a proxy i am getting error. How to send proxy IP, port and then username and password for ...