mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-06 07:16:09 +00:00
30 lines
1.1 KiB
C#
30 lines
1.1 KiB
C#
<Query Kind="Program">
|
|
<NuGetReference>Octokit</NuGetReference>
|
|
<NuGetReference>Octokit.Reactive</NuGetReference>
|
|
<NuGetReference>Rx-Main</NuGetReference>
|
|
<Namespace>Octokit</Namespace>
|
|
<Namespace>System.Threading.Tasks</Namespace>
|
|
</Query>
|
|
|
|
async Task Main(string[] args)
|
|
{
|
|
var userName = string.Empty;
|
|
GitHubClient client = new GitHubClient(new Octokit.ProductHeaderValue("octokit.samples"));
|
|
|
|
userName = "naveensrinivasan";
|
|
// basic authentication
|
|
//client.Credentials = new Credentials("username", "password");
|
|
|
|
// or if you don't want to give an app your creds
|
|
// you can use a token from an OAuth app
|
|
// Here is the URL to get tokens https://github.com/settings/tokens
|
|
// and save the token using Util.SetPassword("github","CHANGETHIS")
|
|
client.Credentials = new Credentials(Util.GetPassword("github"));
|
|
|
|
var repositories = await client.Repository.GetAllForUser(userName);
|
|
repositories.Select(r => new { r.Name }).Dump(userName + "Repos");
|
|
|
|
// and then fetch the repositories for the current user
|
|
var repos = await client.Repository.GetAllForCurrent();
|
|
repos.Select(r => r.Name).Dump("Your Repos");
|
|
} |