tags:

views:

26

answers:

2

HELLO, Though it seems like simple action, i am having trouble to find an example in any C# Twitter API avaliable today that pull all the public recent messages. I find how to do it with Java, but i really need to do it in C#. Does anybody have an example+API to use, for me. thanks

A: 

Try GetPublicTimelineAsXML from Yedda Twitter. That library is low-level, but directly maps to Twitter's methods (in this case public_timeline), which should be convenient if you're reading the official Twitter docs.

Matthew Flaschen