mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-10-31 22:38:49 +00:00
6004e9907d
Signed-off-by: ianlv <sunlvyun@outlook.com> |
||
---|---|---|
.. | ||
woodpecker | ||
LICENSE | ||
README.md |
woodpecker-go
import (
"go.woodpecker-ci.org/woodpecker/v2/woodpecker-go/woodpecker"
"golang.org/x/oauth2"
)
const (
token = "dummyToken"
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)
}