Tagged Questions

2
votes
2answers
164 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
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
28 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
207 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
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
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
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
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
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 ...
-1
votes
2answers
164 views

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 = ...
-3
votes
4answers
252 views

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; ...