我有一个这样的 URL:“今天真是美好的一天”
http://localhost:8999/createAudio?method=createAudio&sessionId=1234&text=${line}&voice=Paul&encoder=MP3";
在哪里。
我用来捕获上述http请求的输出,如下所示:${line}
wget
cURL="http://localhost:8999/createAudio?method=createAudio&sessionId=1234&text=${line}&voice=Sangeeta&encoder=MP3";
wget -O test.html ${cURL}
我的问题是 http 请求在第一个空白处被切断。因此,将发出的 http 请求将如下所示:
http://localhost:8999/createAudio?method=createAudio&sessionId=1234&text=This
如何确保${line}
在 http 请求中使用整个内容?