Created
January 13, 2017 02:20
-
-
Save scottksmith95/123de882ea24569c1c7ad48d200c89c5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Net; | |
public class ApiRequest | |
{ | |
readonly static WebClient WebClient = new WebClient(); | |
public static string GetJson(Uri uri) | |
{ | |
return WebClient.DownloadString(uri); | |
} | |
} | |
using System; | |
class Program | |
{ | |
const string GitHubPath = "https://api.github.com/users/scottksmith95/repos"; | |
static void Main(string[] args) | |
{ | |
var gitHubUri = new Uri(GitHubPath); | |
var json = ApiRequest.GetJson(gitHubUri); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment