/veracode-go-api

Primary LanguageGoMIT LicenseMIT

Go Report Card License: MIT

Veracode Go API

A Go version of the Veracode API.

Running

Create a Go file with the following example contents:

package main

import (
	api "github.com/antfie/veracode-go-api"
)

func main() {
	var apiKeyID = "YOUR_VERACODE_API_KEY_ID"
	var apiKeySecret = "YOUR_VERACODE_API_KEY_SECRET"

	response, err := api.GetApplicationList(apiKeyID, apiKeySecret)

	if err != nil {
		panic(err)
	}

	print(response)
}

Configure your apiKeyID and apiKeySecret values and then run.