I want to get the most current questions from Stack Overflow using the Stacky C# library for the Stack Exchange API.
I took the example code and tried to run it but it hangs when it comes to returning data from the Stack Exchange website.…
I'm using StackOverflow API on .Net Stacky to try to get the information about the questions with specific tags.
Below is the a sample code
var client = new StackyClient("1.1", "", Sites.StackOverflow, new UrlClient(), new JsonProtocol());
var…
I use the StackyClient library to loop over newest questions in Stack Overflow. Generally this works:
StackyClient client = new StackyClient("1.1", "", Sites.MetaStackOverflow, new UrlClient(), new JsonProtocol());
var o = new…