aiohttp-xmlrpc
aiohttp-xmlrpc copied to clipboard
Update client.py to allow ssl context to be passed in
so that it works with https
You might pass ssl_context argument to to the __init__'s **kwargs. This will be passed to the aiohttp.Session.
Hi mosquitor, it seems that it needs to be added to post() in __remote_call(). Parameters added to **kwargs will only be part of the data in the xmlrpc request. regards, bob
Hi mosquitor, it seems that it needs to be added to post() in __remote_call(). Parameters added to **kwargs will only be part of the data in the xmlrpc request. regards, bob
@bfsheng @mosquito you can apply ssl kwargs globally with ServerProxy(connector=TCPConnector(ssl=...))