The Basics The typical way that you’d make a request with RestSharp: Create a RestRequest Create a RestClient Execute the request with the client Do something with the response. It’s at the point that you get the client...
With v3 of the Github REST API, calling a certain methods when unauthenticated will return a limited set of information, and when authenticated will return extra information. One of the things I wanted to do was to make...
Despite many months of not posting anything on this blog (OK, nearly a year) I am returning with another post about my on/off project to write a C# library to access the Github REST API. Much like my...
A lot of people who work, don’t like their job. It’s a fact. If you were at a party and you asked people if they like the job they get paid to do, the response would be largely...
In the code I help maintain in my day job, I see a lot of the following code: try { /* code */ } catch(Exception) { } I see it in several different languages almost daily. It really...