https://github.com/as/bitmovin-api-sdk-go
Go API SDK which enables you to seamlessly integrate the Bitmovin API into your projects
https://github.com/as/bitmovin-api-sdk-go
Last synced: 6 months ago
JSON representation
Go API SDK which enables you to seamlessly integrate the Bitmovin API into your projects
- Host: GitHub
- URL: https://github.com/as/bitmovin-api-sdk-go
- Owner: as
- License: mit
- Fork: true (zsiec/bitmovin-api-sdk-go)
- Created: 2021-04-26T18:09:37.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-04-26T18:57:14.000Z (about 5 years ago)
- Last Synced: 2024-06-20T13:41:06.109Z (about 2 years ago)
- Language: Go
- Homepage:
- Size: 508 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Go API SDK which enables you to seamlessly integrate the Bitmovin API into your projects.
***Important! This is an alpha version, there may be breaking changes.***
Using this API client requires an active account.
> Don't have an account yet? [Sign up for a free Bitmovin trial plan](https://dashboard.bitmovin.com/signup)!
For full documentation of all available API endpoints, see the [Bitmovin API reference](https://bitmovin.com/docs).
## Installation:
```bash
go get github.com/bitmovin/bitmovin-api-sdk-go
```
## Initializiation
```go
package main
import (
"github.com/bitmovin/bitmovin-api-sdk-go"
"github.com/bitmovin/bitmovin-api-sdk-go/common"
)
func main() {
bitmovinApi, err := bitmovin.NewBitmovinApi(func(apiClient *common.ApiClient) {
apiClient.ApiKey = ""
})
if err != nil {
panic(err)
}
// ...
}
```