/go-putio

Put.io Go API client

Primary LanguageGoMIT LicenseMIT

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)
}