Skip to content

Latest commit

 

History

History
42 lines (30 loc) · 926 Bytes

README.md

File metadata and controls

42 lines (30 loc) · 926 Bytes

putio Build Status

putio is a Go client library for accessing the Put.io v2 API.

documentation

the documentation is available on godoc.

install

go get -u github.com/igungor/go-putio/putio"

usage

package main

import (
        "fmt"
        "log"
        "context"

        "golang.org/x/oauth2"
        "github.com/igungor/go-putio/putio"
)

func main() {
    tokenSource := oauth2.StaticTokenSource(&oauth2.Token{AccessToken: "<YOUR-TOKEN-HERE>"})
    oauthClient := oauth2.NewClient(oauth2.NoContext, tokenSource)

    client := putio.NewClient(oauthClient)

    const rootDir = 0
    root, err := client.Files.Get(context.Background(), rootDir)
    if err != nil {
        log.Fatal(err)
    }
    fmt.Println(root.Filename)
}