JoooostB / mollie-api-go

Golang wrapper for Mollie's REST API with full resource coverage.

Home Page:https://www.mollie.com/en/developers/packages

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Mollie API Golang client

Scrutinizer CI

Build Status Code Coverage Scrutinizer Code Quality

Go ecosystem

PkgGoDev Go Report Card

Accepting iDEAL, Apple Pay, Bancontact, SOFORT Banking, Creditcard, SEPA Bank transfer, SEPA Direct debit, PayPal, Belfius Direct Net, KBC/CBC, paysafecard, Giftcards, Giropay, EPS and Przelewy24 online payments without fixed monthly costs or any punishing registration procedures. Just use the Mollie API to receive payments directly on your website or easily refund transactions to your customers.

Requirements

To use the Mollie API client, the following things are required:

  • Get yourself a free Mollie account. No sign up costs.
  • Now you're ready to use the Mollie API client in test mode.
  • Follow a few steps to enable payment methods in live mode, and let us handle the rest.
  • Up-to-date OpenSSL (or other SSL/TLS toolkit)

For leveraging Mollie Connect (advanced use cases only), it is recommended to be familiar with the OAuth2 protocol.

Install

go get -u github.com/VictorAvelar/mollie-api-go/v2

Usage

Create a basic client

// main.go
/*
Parse authentication key from MOLLIE_API_TOKEN
*/
config := mollie.NewConfig(true, mollie.APITokenEnv)
client, err := mollie.NewClient(nil, config)
if err != nil {
    log.Fatal(err)
}
// do your operations with the authenticated client

For more examples visit the examples directory.

API parity

Checks to the API changelog are performed constantly to ensure API parity and compatibility, however it might happen that not all the changes are implemented right away.

For checking all the related tasks you can check the issues labeled with the API parity label.

About

Golang wrapper for Mollie's REST API with full resource coverage.

https://www.mollie.com/en/developers/packages

License:MIT License


Languages

Language:Go 99.4%Language:Makefile 0.6%Language:Dockerfile 0.1%