GMOあおぞらネット銀行について
GMOあおぞらネット銀行 API開発者ポータルについて
https://api.gmo-aozora.com/ganb/developer/
1.0.0
Node 10+
- clone the repository from Github in your project folder\
https://github.com/gmoaozora/gmo-aozora-api-nodejs
git clone git@github.com:gmoaozora-sys/gmo-aozora-api-nodejs.git
- With the terminal, go to the folder and run\
cd gmo-aozora-api-nodejs npm install
Add the configuration below into your config file
-
stg
conf.json
{ "AUTH_BASE_URL": "https://stg-api.gmo-aozora.com/ganb/api/auth/v1", "JWT_ISSUER": "https://stg-api.gmo-aozora.com/", "AUTH_PATH": "/authorization", "TOKEN_PATH": "/token", "SALT": "PleaseDefineYourself" }
this.basePath = 'https://stg-api.gmo-aozora.com/ganb/api/personal/v1'.replace(/\/+$/, '');
this.basePath = 'https://stg-api.gmo-aozora.com/ganb/api/corporation/v1'.replace(/\/+$/, '');
this.basePath = 'https://stg-api.gmo-aozora.com/ganb/api/webhook/v1'.replace(/\/+$/, '');
-
prod
conf.json
{ "AUTH_BASE_URL": "https://api.gmo-aozora.com/ganb/api/auth/v1", "JWT_ISSUER": "https://api.gmo-aozora.com/", "AUTH_PATH": "/authorization", "TOKEN_PATH": "/token", "SALT": "PleaseDefineYourself" }
this.basePath = 'https://api.gmo-aozora.com/ganb/api/personal/v1'.replace(/\/+$/, '');
this.basePath = 'https://api.gmo-aozora.com/ganb/api/corporation/v1'.replace(/\/+$/, '');
this.basePath = 'https://api.gmo-aozora.com/ganb/api/webhook/v1'.replace(/\/+$/, '');
GMO Aozora Net Bank, Ltd. (open-api@gmo-aozora.com)