我尝试实现:
curl -u "apikey:{apikey}" "{url}/{method}"
resorce:https://console.bluemix.net/apidocs/tone-analyzer
我的问题是我需要做什么?我已经有api密钥,例如1234,
而我的网址是https://gateway.watsonplatform.net/tone-analyzer/api
首先,上述cURL请求中的{method}
是什么,我该怎么办?
问题2这是正确的吗?:
curl -u "apikey:1234" "https://gateway.watsonplatform.net/tone-analyzer/api/{method}
答案 0 :(得分:1)
在下面的cURL请求中:
let result = await Model.update({typeOf: docs.typeOf}, {"$pull": {$pull: {answers: {_id: req.params.answerId} } } , {safe: true}).lean();
{URL}是https://gateway.watsonplatform.net/tone-analyzer/api,而{method}是/ v3 / tone。在端点下,检查this link
您正在进行GET方法调用,为此,您需要在https://console.bluemix.net/catalog/services/tone-analyzer上创建服务
有关如何获取API密钥的更多信息,请参阅this link