使用带有Curl的Bing语音示例

首先,我真的不知道我在做什么,所以我为这个愚蠢的问题道歉…只是试着按照这里的说明:

https://www.microsoft.com/cognitive-services/en-us/Speech-api/documentation/GetStarted/GetStarted-cURL

在Windows上使用cURL并输入:

curl -v -X POST“https://speech.platform.bing.com/recognize?scenarios=ulm&appid=D4D52672-91D7-4C74-8AD8-42B1D98141A5&locale=en-US&device.os=windows&version=3.0&format=json&instanceid=e8ef8f76-2318-45d4-ac04-b73362ac61ec&requestid=73346a62-51fb-4aad-882b-9e5cd4198f57”-H’授权:Bearer JWT’-H’内容类型:audio / wav;编解码器= “音频/ PCM”; samplerate = 16000′ – data-binary @ bing2.wav

这是输出…任何关于我做错的线索将不胜感激:

*  SSL certificate verify ok.
> POST /recognize?scenarios=ulm&appid=D4D52672-91D7-4C74-8AD8-
42B1D98141A5&local
e=en-US&device.os=windows&version=3.0&format=json&instanceid=e8ef8f76-2318-    45d4-
ac04-b73362ac61ec&requestid=73346a62-51fb-4aad-882b-9e5cd4198f57 HTTP/1.1
> Host: speech.platform.bing.com
> User-Agent: curl/7.50.0
> Accept: */*
> Content-Length: 314438
> Content-Type: application/x-www-form-urlencoded
> Expect: 100-continue
>
< HTTP/1.1 100 Continue
* We are completely uploaded and fine
< HTTP/1.1 403 Forbidden
< Content-Length: 0
< Server: Microsoft-IIS/8.5
< X-MSEdge-Ref: Ref A: 3BA3FD7E454246D69D3B1E6C436F0261 Ref B:     
8CD198CC061DC0914
B02FDF95CFEDBD6 Ref C: Sun Jan  8 15:06:41 2017 PST
< Date: Sun, 08 Jan 2017 23:06:41 GMT
<
* Connection #0 to host speech.platform.bing.com left intact
Note: Unnecessary use of -X or --request, POST is already inferred.
* Rebuilt URL to: Bearer/
* Could not resolve host: Bearer
* Closing connection 1
curl: (6) Could not resolve host: Bearer
Note: Unnecessary use of -X or --request, POST is already inferred.

提前致谢!

最佳答案 如果正确格式化命令行,它应该工作.

你错过了-H’Content-type …之前的空间,所以在-H之前的引用没有得到正确处理.您还需要在Bearer之后正确替换您在上一步中收到的令牌,而不仅仅是放置JWT.

点赞