I'm trying to use 'aiohttp' with 'browser-cookie3' however it doesn't accept the cookiejar, it shows the following message: "cannot unpack non-iterable Cookie object"
My cookie works with 'requests' but isn't working with aiohttp
How should I modify the Cookie object to make it work with aiohttp?
#browser_cookie3:
cj = browser_cookie3.load()
#iohttp error command:
async with ClientSession(cookies=cj) as session:
#Error message: "cannot unpack non-iterable Cookie object"
Note: I tried to use cj._cookies but didn't work too, no error message but couldn't Sign In.