bitmovin / bitmovin-api-sdk-go

Go API SDK which enables you to seamlessly integrate the Bitmovin API into your projects
MIT License
4 stars 5 forks source link

Bitmovin Go API SDK Header

Go API SDK which enables you to seamlessly integrate the Bitmovin API into your projects.

License

Using this API client requires an active account.

Don't have an account yet? Sign up for a free Bitmovin trial plan!


Documentation & Release Notes

Support

If you have any questions regarding the SDK, provided examples or our services, please log in to your Bitmovin Dashboard at https://bitmovin.com/dashboard and create a support ticket. Our team will get back to you as soon as possible :+1:


Installation:

go get github.com/bitmovin/bitmovin-api-sdk-go

Initializiation

package main

import (
    "github.com/bitmovin/bitmovin-api-sdk-go"
    "github.com/bitmovin/bitmovin-api-sdk-go/apiclient"
)

func main() {
    bitmovinAPI, err := bitmovin.NewBitmovinAPI(apiclient.WithAPIKey("<YOUR_API_KEY>"))
    if err != nil {
        panic(err)
    }

   // ...
}