tags:

views:

104

answers:

3

Hi,

I've used this example to retrieve my twitter feeds however it has an error "The remote server returned an error: (400) Bad Request."

A: 

Read the Twitter-API-wiki or reference the Twitter dev center

froeschli
+1  A: 

Have you tried manually going to "http://twitter.com/statuses/user_timeline/" + User + ".rss" in your browser, and seeing if you get a 400 error there? I'm guessing a typo in your user name when you call Twitter.Parse(UserName);

SamStephens
its not consistent sometimes it displays and sometimes its not. Here's the error Rate limit exceeded. Clients may not make more than 150 requests per hour
xscape
Exactly what i needed, thnx!
Rob
A: 

Consider using a library that abstracts all the parsing for you.

Try Twitterizer, a .NET library designed for quick and easy Twitter integration.

There is a large set of documentation on the Twitterizer API, and sample code. Perhaps get a feel for how others are using it by browsing the Twitterizer tag on StackOverflow.

p.campbell
I tried the Twitterizer, I added the dll's and when I tried to instantiate a mwthod for example this one TwitterUser t = new TwitterUser(); and I build it, it has an error the namespace could not be found.
xscape