Has Anyone Successfully Used the POST Method with Python

No matter how I try to form the fetch() it sends a GET request to the server.

from js import fetch, Response

async def handle_request(request):
req = await fetch("https://example.com", {
'method': 'POST',
'headers': {
'Content-Type': 'application/json',
},
'body': '{"test": "data"}'
})

response_data = await req.text()
return Response.new(response_data)

async def on_fetch(request):
return await handle_request(request)
Was this page helpful?