进行Ajax REST调用

时间:2016-02-19 06:37:40

标签: javascript jquery ajax rest curl

如何将以下cURL转换为ajax REST呼叫?

    curl -u "{username}":"{password}" \
-H "content-type: audio/wav" \
--data-binary @"/path/to/file.wav" \
"https://stream.watsonplatform.net/speech-to-text/api/v1/recognize"

我在ajax调用下添加了一些,我不知道如何添加其余部分,特别是-H--data-binary @

中提到的部分
function restCall()
            {
                $.ajax
                ({
                    type: "GET",
                    url: "https://stream.watsonplatform.net/speech-to-text/api/v1/recognize",
                    dataType: 'json',
                    username: "xxxx",
                    password: "xxxx",

                    success: function (data){
                        alert(JSON.stringify(data)); 
                    }
                });
            }

0 个答案:

没有答案