Skip to content

NordeaGo is a wrapper for the Nordea Open Banking API written in Go

License

Notifications You must be signed in to change notification settings

uberswe/nordeago

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NordeaGo - Unofficial Golang wrapper for Nordea Open Banking

GoDoc Go Report Card Build Status

NordeaGo is a wrapper for the Nordea Open Banking API version 2.3 written in Go.

This was written and tested with the sandbox API provided by Nordea, I am not able to test this in a production setting as I do not have the required licenses.

Please note that this is a work in progress and I may have made mistakes here and there.

Sample

I tried to keep things simple, here is an example of how to authenticate. More examples are available in the _examples folder.

func main() {
	// You can get a free sandbox clientID and clientSecret via the Nordea Open Banking developer
	// portal by signing up here https://developer.nordeaopenbanking.com
	clientID := "Your-Client-Id"
	clientSecret := "Your-Client-Secret"
	redirectURI := "https://httpbin.org/get"

	// Create the client by calling InitClient with your clientID and clientSecret
	client := nordeago.InitClient(clientID, clientSecret, redirectURI)

	// Build the AuthRequestDecoupled
	// Documentation can be found here https://developer.nordeaopenbanking.com/app/documentation?api=Identity and Access API&version=2.1#authorize
	authRequest := ina.AuthRequestDecoupled{
		ResponseType: "nordea_code",
		PsuID:        "193805010844",
		Scope:        []string{"ACCOUNTS_BASIC", "PAYMENTS_MULTIPLE", "ACCOUNTS_TRANSACTIONS", "ACCOUNTS_DETAILS", "ACCOUNTS_BALANCES"},
		Language:     "SE",
		RedirectURI:  redirectURI,
		AccountList:  []string{"41770042136"},
		Duration:     129600,
		State:        "some id",
	}

	// Pass the request to the StartAuthDecoupled of the client to make the request
	authResponse, err := ina.StartAuthDecoupled(&client, authRequest)

	// Check for any errors
	if err != nil {
		panic(err)
	}

	// print our response
	fmt.Printf("% v\n", authResponse)
}

Bugs and Errors

If you find a bug or error in the wrapper please open an issue here directly. If you find an issue or have a question about the Nordea API please use their support page.

Contributing

I am always open to contributions. You are allowed to keep your copyright of your contributions, the only thing I require is that it follows the same license as this repository. If you would like to contribute please open a pull request.

Example code

Please see the examples folder for examples of how to use this library

License

This library is distributed under the MIT license found in the LICENSE file.

About

NordeaGo is a wrapper for the Nordea Open Banking API written in Go

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages