2021-10-02 22:27:43 +00:00
|
|
|
# woodpecker-go
|
2019-04-06 19:32:14 +00:00
|
|
|
|
|
|
|
```Go
|
|
|
|
import (
|
2022-06-17 10:03:34 +00:00
|
|
|
"github.com/woodpecker-ci/woodpecker/woodpecker-go/woodpecker"
|
|
|
|
"golang.org/x/oauth2"
|
2019-04-06 19:32:14 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2022-06-17 10:03:34 +00:00
|
|
|
token = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9"
|
|
|
|
host = "http://woodpecker.company.tld"
|
2019-04-06 19:32:14 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2022-06-17 10:03:34 +00:00
|
|
|
// create an http client with oauth authentication.
|
|
|
|
config := new(oauth2.Config)
|
|
|
|
authenticator := config.Client(
|
|
|
|
oauth2.NoContext,
|
|
|
|
&oauth2.Token{
|
|
|
|
AccessToken: token,
|
|
|
|
},
|
|
|
|
)
|
2019-04-06 19:32:14 +00:00
|
|
|
|
2022-06-17 10:03:34 +00:00
|
|
|
// create the woodpecker client with authenticator
|
|
|
|
client := woodpecker.NewClient(host, authenticator)
|
2019-04-06 19:32:14 +00:00
|
|
|
|
2022-06-17 10:03:34 +00:00
|
|
|
// gets the current user
|
|
|
|
user, err := client.Self()
|
|
|
|
fmt.Println(user, err)
|
2019-04-06 19:32:14 +00:00
|
|
|
|
2022-06-17 10:03:34 +00:00
|
|
|
// gets the named repository information
|
|
|
|
repo, err := client.Repo("woodpecker-ci", "woodpecker")
|
|
|
|
fmt.Println(repo, err)
|
2019-04-06 19:32:14 +00:00
|
|
|
}
|
|
|
|
```
|