I have the following code.
Twitter t1 = new Twitter("twitteruser","password");
TwitterUser user = t1.User.Show("username");
if (user != null)
{
TwitterParameters param = new TwitterParameters();
param.Add(TwitterParameterNames.UserID, user.ID);
TwitterStatusCollection t =t1.Status.UserTimeline(param);
}
In the above code, I want to get the user timeline. I am using the Twitterizer API. Twitter documentation to get user timeline here
I checked the violinist what was going on. In the scripter, the request is:
http://api.twitter.com/1/direct_messages.xml?user_id=xxxxx
while i expect
http://twitter.com/statuses/user_timeline.format
Something left that I missed.
Adele source
share