fix: update inner api proxies (#9174)

This commit is contained in:
Joe 2024-10-11 11:35:01 +08:00 committed by GitHub
parent e0c8189f1a
commit 1e7ef46e9c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -7,11 +7,16 @@ class EnterpriseRequest:
base_url = os.environ.get("ENTERPRISE_API_URL", "ENTERPRISE_API_URL")
secret_key = os.environ.get("ENTERPRISE_API_SECRET_KEY", "ENTERPRISE_API_SECRET_KEY")
proxies = {
"http": None,
"https": None,
}
@classmethod
def send_request(cls, method, endpoint, json=None, params=None):
headers = {"Content-Type": "application/json", "Enterprise-Api-Secret-Key": cls.secret_key}
url = f"{cls.base_url}{endpoint}"
response = requests.request(method, url, json=json, params=params, headers=headers)
response = requests.request(method, url, json=json, params=params, headers=headers, proxies=cls.proxies)
return response.json()