mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-01-25 08:38:43 +00:00
36 lines
662 B
Markdown
36 lines
662 B
Markdown
|
# drone-go
|
||
|
|
||
|
```Go
|
||
|
import (
|
||
|
"github.com/drone/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)
|
||
|
}
|
||
|
```
|