https://github.com/davidji99/rollrest-go
Go library for accessing the Rollbar Rest API
https://github.com/davidji99/rollrest-go
api rollbar rollbar-api rollrest-go
Last synced: 8 months ago
JSON representation
Go library for accessing the Rollbar Rest API
- Host: GitHub
- URL: https://github.com/davidji99/rollrest-go
- Owner: davidji99
- License: apache-2.0
- Created: 2020-02-11T10:01:40.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-06-02T11:35:49.000Z (about 5 years ago)
- Last Synced: 2025-08-15T11:55:30.408Z (10 months ago)
- Topics: api, rollbar, rollbar-api, rollrest-go
- Language: Go
- Homepage:
- Size: 485 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# rollrest-go
rollrest-go is a Go client library for accessing the [Rollbar REST APIs](https://explorer.docs.rollbar.com/).
# Example
```go
client, newClientErr := rollrest.New(rollbar.AuthAAT("some_account_access_token"),
rollbar.UserAgent("rollbar-go-custom"))
if newClientErr != nil {
fmt.Printf("Error: %v\n", newClientErr)
return
}
fmt.Println(client)
```