mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-14 05:51:37 +00:00
35 lines
677 B
Markdown
35 lines
677 B
Markdown
# drone-go
|
|
|
|
```Go
|
|
import (
|
|
"github.com/laszlocph/woodpecker/drone-go/drone"
|
|
"golang.org/x/oauth2"
|
|
)
|
|
|
|
const (
|
|
token = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9"
|
|
host = "http://drone.company.com"
|
|
)
|
|
|
|
func main() {
|
|
// create an http client with oauth authentication.
|
|
config := new(oauth2.Config)
|
|
auther := config.Client(
|
|
oauth2.NoContext,
|
|
&oauth2.Token{
|
|
AccessToken: token,
|
|
},
|
|
)
|
|
|
|
// create the drone client with authenticator
|
|
client := drone.NewClient(host, auther)
|
|
|
|
// gets the current user
|
|
user, err := client.Self()
|
|
fmt.Println(user, err)
|
|
|
|
// gets the named repository information
|
|
repo, err := client.Repo("drone", "drone-go")
|
|
fmt.Println(repo, err)
|
|
}
|
|
```
|