Skip to main content

Orkes Conductor Golang SDK

Orkes Conductor Golang SDK is maintained here: https://github.com/conductor-sdk/conductor-go

Get Conductor Go SDK

go get github.com/conductor-sdk/conductor-go

Initialization

Everything related to server settings should be done within the client.NewAPIClient class by setting the required parameters (when initializing an object) like this:


apiClient := client.NewAPIClient(
nil,
settings.NewHttpSettings(
"https://play.orkes.io",
),
)

Authentication Settings (optional)

See Security via Applications or this video for details on how to get an access key and secret.

Once we have a key and secret, we can configure the app from properties or environment variables, as shown in this example:


apiClient := client.NewAPIClient(
settings.NewAuthenticationSettings(
KEY,
SECRET,
),
settings.NewHttpSettings(
"https://play.orkes.io",
),
)

Remember to protect your app secrets like any other secrets or passwords.

Setup Logging

SDK uses logrus for logging.

func init() {
log.SetFormatter(&log.TextFormatter{})
log.SetOutput(os.Stdout)
log.SetLevel(log.DebugLevel)
}