views:

36

answers:

1

is there a way to programatically get a list of all feeds and there current labels, folders from google reader. i am using c#. i see there are some listing for http get / put code but can't find any good parsers as well

+1  A: 

Here's an interesting article about using Google Reader in C# directly. You may also take a look at Google Reader .NET API.

Darin Dimitrov
thanks . . i dont see any parsing code here . . what is the recommended way to parse json strings into csharp objects ?
ooo
There are some JSON libraries like Json.NET (http://james.newtonking.com/projects/json-net.aspx).
Darin Dimitrov