woodpecker/woodpecker-go
2023-08-10 11:06:00 +02:00
..
woodpecker Fix woodpecker-go (#2090) 2023-08-03 02:39:37 +02:00
LICENSE Check for correct license header (#2137) 2023-08-10 11:06:00 +02:00
README.md Fix client example (#2085) 2023-08-01 17:16:45 +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.RepoLookup("woodpecker-ci/woodpecker")
  fmt.Println(repo, err)
}