strong base for payment handling
Some checks failed
Build and deploy the backend to staging / Build and push image (pull_request) Failing after 50s
Build and deploy the backend to staging / Deploy to staging (pull_request) Has been skipped
Run testing on the backend code / Build (pull_request) Failing after 2m32s
Run linting on the backend code / Build (pull_request) Successful in 2m39s

This commit is contained in:
2025-10-08 17:30:07 +02:00
parent f86174bc11
commit ab03cee3e3
3 changed files with 395 additions and 150 deletions

View File

@@ -74,6 +74,7 @@ order_data = {
order_response = requests.post(
url=order_url,
headers={"Authorization": f"Bearer {access_token}"}, ## need access token here?
json=order_data,
auth=(username, password)
)