thinkingparticle
Results
1
comments of
thinkingparticle
as an example of how to build a request with proxies: ``` send_grid_api_client = SendGridAPIClient("YOUR API KEY") tmp_url = send_grid_api_client.client.mail.send._build_url(query_params={}) headers = send_grid_api_client.client.request_headers req_body = {'from': {'email': '[email protected]'}, 'subject': 'my_subject',...