GMOあおぞらネット銀行について
GMOあおぞらネット銀行 API開発者ポータルについて
https://api.gmo-aozora.com/ganb/developer/
1.0.0
Python 3.5+
pip install git+https://github.com/gmoaozora/gmo-aozora-api-python.git
Then import the package
import ganb_auth
import ganb_personal_client
import ganb_corporate_client
import ganb_webhook_client
python setup.py install --user
Then import the package
import ganb_auth
import ganb_personal_client
import ganb_corporate_client
import ganb_webhook_client
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" }
self.host = "https://stg-api.gmo-aozora.com/ganb/api/personal/v1"
self.host = "https://stg-api.gmo-aozora.com/ganb/api/corporation/v1"
self.host = "https://stg-api.gmo-aozora.com/ganb/api/webhook/v1"
-
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" }
self.host = "https://api.gmo-aozora.com/ganb/api/personal/v1"
self.host = "https://api.gmo-aozora.com/ganb/api/corporation/v1"
self.host = "https://api.gmo-aozora.com/ganb/api/webhook/v1"
GMO Aozora Net Bank, Ltd. ([email protected])