Pass expected content type to json() method:
data = await resp.json(content_type="text/html")
or disable the check entirely:
data = await resp.json(content_type=None)
Pass expected content type to json() method:
data = await resp.json(content_type="text/html")
or disable the check entirely:
data = await resp.json(content_type=None)