GithubHelp home page GithubHelp logo

gogs-kit.net's Introduction

A .NET client library for the Gogs API.

This library is not complete. So far it's mostly focused on the user, organization, and team API endpoints.

The design is inspired by the Octokit.net library.

Build status

Installation

The easiest way to use this library is to install the NuGet package:

PM> Install-Package GogsKit

Getting Started

Here's a minimal example that uses the API client:

var gogsClient = new GogsKit.GogsClient("https://try.gogs.io/api/v1/");
var user = await gogsClient.Users.GetAsync("test");

Assuming the Gogs demo site hasn't changed since this was written, that example should just work. It makes an anonymous connection to the API and parses the result into a .NET object (a UserResult in this case).

Two types of authentication are supported: by username/password and by access token. Here's an example that uses both:

var credentials = new Credentials("username", "password");
var gogsClient = new GogsClient("https://try.gogs.io/api/v1/", credentials);

var tokens = await gogsClient.Users.GetTokensAsync("username");
var token = tokens.FirstOrDefault();
if (!tokens.Any())
{
	token = await gogsClient.Users.CreateTokenAsync("username", "token_name");
}

var tokenCredentials = new Credentials(token.Sha1);
var tokenGogsClient = new GogsClient("https://try.gogs.io/api/v1/", tokenCredentials);
var userOrgs = tokenGogsClient.User.GetOrganizationsAsync();

See the Gogs API documentation for more details on the available API endpoints.

gogs-kit.net's People

Contributors

22222 avatar

Watchers

 avatar  avatar

Forkers

dave-5 rbnswartz

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.