gpt4 book ai didi

javascript - 如何在Ajax中调用curl命令

转载 作者:行者123 更新时间:2023-12-03 04:55:48 25 4
gpt4 key购买 nike

这是我的curl命令,无论如何都可以使用ajax执行此命令

curl -X POST -u "CONVERSATION_USERNAME":"CONVERSATION_PASSWORD" -H "Content-Type:application/json" -d "{\"input\": {\"text\":\" \"}}" "https://gateway.watsonplatform.net/conversation/api/v1/workspaces/CONVERSATION_ID/message?version=2016-07-11"

最佳答案

这应该有效。

$.ajax({
url: "https://conversation_username:conversation_password@gateway.watsonplatform.net/conversation/api/v1/workspaces/CONVERSATION_ID/message?version=2016-07-11",
method: "POST",
headers: {
"Content-Type": "application/json"
},
data: {
input: {
text: " "
}
}
})
done(function(data) {
// handle success response
})
.fail(function(err) {
// handle error response
});

http://api.jquery.com/jquery.ajax/

编辑 - 更新以使用 promise 处理成功和错误响应。

关于javascript - 如何在Ajax中调用curl命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42433021/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com