Ihor Kuzmenko

Results 1 comments of Ihor Kuzmenko

@FabianElsmer we faced with the same issue, `allow_methods="*"` - could help you. you could try this: ```python cors = aiohttp_cors.setup(app, defaults={ "*": aiohttp_cors.ResourceOptions( allow_credentials=True, expose_headers="*", allow_headers="*", allow_methods="*" ) }) ```