Skip to content

tatsuworks/tatsu-api-go

Repository files navigation

Tatsu API Go

Official Go wrapper for Tatsu's API

Install

go get github.com/tatsuworks/tatsu-api-go

Example 1: using background context

import tatsuapi "github.com/tatsuworks/tatsu-api-go"

client := tatsuapi.New("YOUR_API_KEY")

user, err := client.GetUserProfile("172002275412279296")
if err == nil {
    fmt.Println("Rep: " + user.Reputation)
}

Example 2: using timeout context

import tatsuapi "github.com/tatsuworks/tatsu-api-go"

client := tatsuapi.New("YOUR_API_KEY")

ctx, cancel := context.WithTimeout(context.Background(), 2*time.Second)
defer cancel()

user, err := client.GetUserProfileWithContext(ctx, "172002275412279296")
if err == nil {
    fmt.Println("Rep: " + user.Reputation)
}

License

Copyright ©2021-2022 Tatsu Works.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.