Twitter API - Get a list of your friends in C#
Posted by: Wallace B. McClure,
on 20 Mar 2009 |
View original | Bookmarked: 0 time(s)
I needed to call the Twitter API and get a list of friends. I
thought I could do something similar to getting a list of posts, but
alas, I had some stupid error in my linq to xml code. I futzed around
with it for days to no avail. Finally, I decided it was just easier to
iterate through the XML using an XmlNode and fill my objects that way.
Hey, it just worked. Like my previous example, this code uses C# and
is in a WCF Service. Note: As displayed, the code doesn't...