woodpecker/woodpecker-go
2022-01-05 21:50:23 +01:00
..
woodpecker gofumpt -w -l -extra . (#661) 2022-01-05 21:50:23 +01:00
LICENSE Rename drone-go (#390) 2021-10-03 00:27:43 +02:00
README.md Fix various typos (#416) 2021-10-08 18:35:56 +02:00

woodpecker-go

import (
	"github.com/woodpecker-ci/woodpecker/woodpecker-go/woodpecker"
	"golang.org/x/oauth2"
)

const (
	token = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9"
	host  = "http://woodpecker.company.tld"
)

func main() {
	// create an http client with oauth authentication.
	config := new(oauth2.Config)
	authenticator := config.Client(
		oauth2.NoContext,
		&oauth2.Token{
			AccessToken: token,
		},
	)

	// create the woodpecker client with authenticator
	client := woodpecker.NewClient(host, authenticator)

	// gets the current user
	user, err := client.Self()
	fmt.Println(user, err)

	// gets the named repository information
	repo, err := client.Repo("woodpecker-ci", "woodpecker")
	fmt.Println(repo, err)
}