Questions tagged [stacky]

A C# library for the Stack Exchange API

A C# library to access Stack Exchange data using .Net.

3 questions
10
votes
2 answers

Get Stack Overflow questions with Stacky API

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.…
juergen d
  • 201,996
  • 37
  • 293
  • 362
1
vote
1 answer

How to get the stackoverflow questions body using stacky

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…
QianLi
  • 1,088
  • 12
  • 22
0
votes
1 answer

Set StackyClient Timeout

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…
juergen d
  • 201,996
  • 37
  • 293
  • 362