This SDK has been rebranded to Worldline. As part of the rebranding the SDK has moved to https://github.com/Worldline-Global-Collect/connect-sdk-go.
The Go SDK helps you to communicate with the Ingenico Connect Server API. Its primary features are:
- convenient go wrapper around the API calls and responses
- marshalls Go request structs to HTTP requests
- unmarshalls HTTP responses to Go response structs or Go exceptions
- handling of all the details concerning authentication
- handling of required meta data
Its use is demonstrated by an example for each possible call. The examples execute a call using the provided API keys.
See the Ingenico Connect Developer Hub for more information on how to use the SDK.
Go version 1.11 or higher is required. No additional packages are required.
This repository also contains some example code. This code is contained in the examples folder.
To install the latest version of this repository, run the following command from a terminal:
go get github.com/Ingenico-ePayments/connect-sdk-go
Go 1.11 added module support and with that support for versions in go get
. This means that, if your project uses modules, you can add @version
to the go get command to get a specific version. For example, go get github.com/Ingenico-ePayments/connect-sdk-go@2.9.0
will download version 2.9.0 of the SDK. See the releases page for an overview of available releases.
If your project does not use modules yet, you will need to use the instructions above to install from source. Note that new major versions may introduce breaking changes. We therefore recommend using modules in your project. See Migrating to Go Modules for more information.
There are two types of tests: unit tests and integration tests. The unit tests will work out-of-the-box; for the integration tests some configuration is required. First, some environment variables need to be set:
connect.api.apiKeyId
for the API key id to use. This can be retrieved from the Configuration Center.connect.api.secretApiKey
for the secret API key to use. This can be retrieved from the Configuration Center.connect.api.merchantId
for your merchant ID.connect.api.proxyUrl
for the URL to the proxy to use (optional). If set, it should be in the formscheme://[userinfo@]host[:port]
. Examples:http://proxy.example.org
,http://user:pass@proxy.example.org
,http://proxy.example.org:3128
.
The following commands can now be executed from the root directory of the SDK folder to execute the tests:
-
Unit tests:
go test ./...
-
Both unit and integration tests:
go test -tags=integration ./...