woodpecker/woodpecker-go
2023-11-14 17:12:12 +01:00
..
woodpecker Rename link to url (#2812) 2023-11-14 17:12:12 +01:00
LICENSE pre-commit fixes (#2669) 2023-10-31 09:14:09 +01:00
README.md Switch to go vanity urls (#2706) 2023-11-07 08:04:33 +01:00

woodpecker-go

import (
  "go.woodpecker-ci.org/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)
}