Skip to content

Instantly share code, notes, and snippets.

@codenuke
Created May 20, 2014 04:14
Show Gist options
  • Save codenuke/3975e0291ef6fb509b4d to your computer and use it in GitHub Desktop.
Save codenuke/3975e0291ef6fb509b4d to your computer and use it in GitHub Desktop.
public void TestApi()
{
string url = "https://api.github.com/repos/Svl2Nuk3/jtable";
var client = new RestClient(url);
var request = new RestRequest(Method.GET);
IRestResponse response = client.Execute(request);
var content = response.Content;
Console.WriteLine(content.ToString());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment