Skip to content

Go library for accessing the Sentry Web API

License

Notifications You must be signed in to change notification settings

eugeniykurasov/go-sentry

 
 

Repository files navigation

go-sentry Go Reference

Go library for accessing the Sentry Web API.

Installation

go-sentry is compatible with modern Go releases in module mode, with Go installed:

go get github.com/jianyuan/go-sentry/v2/sentry

Usage

import "github.com/jianyuan/go-sentry/v2/sentry"

Create a new Sentry client. Then, use the various services on the client to access different parts of the Sentry Web API. For example:

client := sentry.NewClient(nil)

// List all organizations
orgs, _, err := client.Organizations.List(ctx, nil)

Authentication

The library does not directly handle authentication. When creating a new client, pass an http.Client that can handle authentication for you. We recommend the oauth2 library. For example:

package main

import (
	"github.com/jianyuan/go-sentry/v2/sentry"
	"golang.org/x/oauth2"
)

func main() {
    ctx := context.Background()
    tokenSrc := oauth2.StaticTokenSource(
        &oauth2.Token{AccessToken: "YOUR-API-KEY"},
    )
    httpClient := oauth2.NewClient(ctx, tokenSrc)
    
    client := sentry.NewClient(httpClient)
    
    // List all organizations
    orgs, _, err := client.Organizations.List(ctx, nil)
}

Code structure

The code structure was inspired by google/go-github.

License

This library is distributed under the MIT License.

About

Go library for accessing the Sentry Web API

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 100.0%