From 75215cac2def8a47304d80c6aa67e9a8b5b6b58a Mon Sep 17 00:00:00 2001 From: Ryan Abela Date: Fri, 26 Jul 2024 15:49:10 +0200 Subject: [PATCH] changed the way certificates are uploaded. We are now uploading the certificate and private key as PEM files (#57) Co-authored-by: ryana-ccbill --- automation/upload_spec.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/automation/upload_spec.py b/automation/upload_spec.py index da850f3..0bc27ef 100755 --- a/automation/upload_spec.py +++ b/automation/upload_spec.py @@ -163,6 +163,9 @@ def main(): # Add Auth Header by default to all requests. REQUEST.headers.update({'Authorization': 'Bearer {}'.format(access_token)}) + # This seems to be expected as of 26/7/2024 + REQUEST.cookies.update({'access_token': access_token}) + # Retrieve all the API specs folder = get_specs_folder(org_name)