Skip to content

feature_request: support for Forward proxies if behind firewalls #41

Description

@vhartikainen

Add support to use forward proxies behind firewalls. Now the lib doesn't support providing that in the init like API keys.

E.g. here, the use of requests.

if method == "POST":
response = requests.post(url, headers=headers, data=params)
elif method == "PUT":
response = requests.put(url, headers=headers, data=params)
elif method == "DELETE":
response = requests.delete(url, headers=headers, data=params)
else:
response = requests.get(url, headers=headers, params=params)

Should be able to provide them in init:
https://requests.readthedocs.io/en/latest/user/advanced/#proxies

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions