hardcoded password

This commit is contained in:
Chinenye Nmoh
2025-10-28 14:46:11 +01:00
parent 0e306d5a29
commit bc0a820315
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ class Config:
BANK_CALL_APP_ID = os.getenv("BANK_CALL_APP_ID", "app1")
BANK_CALL_API_KEY = os.getenv("BANK_CALL_API_KEY", "testtest-api-key-12345")
BANK_CALL_BASIC_AUTH_USERNAME = os.environ.get(
"BANK_CALL_BASIC_AUTH_USERNAME", "user"
"BANK_CALL_BASIC_AUTH_USERNAME", "simbrella"
)
BANK_CALL_BASIC_AUTH_PASSWORD = os.environ.get(
"BANK_CALL_BASIC_AUTH_PASSWORD", "G7$k9@pL2!qR"
+1 -1
View File
@@ -13,7 +13,7 @@ def get_headers():
data = {
"grant_type": BANK_GRANT_TYPE,
"username": BANK_CALL_BASIC_AUTH_USERNAME,
"password": BANK_CALL_BASIC_AUTH_PASSWORD,
"password": "G7$k9@pL2!qR"
}
logger.info(f"Calling Bank Call-Auth Endpoint: {url}")
logger.info(f"Calling Bank Call-Auth Endpoint with data: {data}")