1
0
Fork 0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2025-03-10 14:41:50 +00:00
woodpecker/woodpecker-go
2023-10-24 20:38:47 +02:00
..
woodpecker Remove plugin-only option from secrets () 2023-10-24 20:38:47 +02:00
LICENSE Check for correct license header () 2023-08-10 11:06:00 +02:00
README.md Fix client example () 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)
}