Weilbyte
Weilbyte
It seems to be an issue with how the framework used for the Worker HTTP server is parsing the request body. @cunhar how exactly are you sending the requests (e.g....
Can you share me the part of the code that sends the request?
For example, this code works for me: ```js const url = 'https://tiktok-tts.weilnet.workers.dev/api/generation'; const options = { method: 'POST', headers: {'content-type': 'application/json'}, body: '{"text":"Hello","voice":"en_us_001"}' }; try { const response = await...