I'm developing a web application in C# to search for users with Github accounts but I have no idea how to start it. I don't want to use a framework like Octokit. I want to call everything in c#.
How do you link the API with the search box in HTML?
I'm developing a web application in C# to search for users with Github accounts but I have no idea how to start it. I don't want to use a framework like Octokit. I want to call everything in c#.
How do you link the API with the search box in HTML?
You can use a C# web request to call the GitHub API.
Example:
WebRequest webRequest = WebRequest.Create("https://api.github.com/repos/screaminghawk/phone-saver/issues?state=closed");
WebResponse webResp = webRequest.GetResponse();