I am referring this article to retrieve and display user information using StackOverflow API.
http://cgeers.com/2011/10/02/stack-exchange-api/
I have edited and made it compatible with the recent API (2.1)..
Now I want to return a list to controller..
Right this function returns single Item to controller
public Items GetUser(int userId)
{
return GetStackExchangeObject<Items>(
String.Format("/users/{0}?site=stackoverflow", userId));
}
I want to return list to the controller..