"/api/getProduct":
get:
description: "Get product data."
operationId: "getProduct"
produces:
- "application/json"
responses:
200:
description: "getProduct"
schema:
$ref: "#/definitions/echoMessage"
security:
- api_key: []
此后,当我部署端点时,收到消息,如下图所示:
现在,我不知道下一步该怎么做?
[请任何人都可以帮助我。预先感谢。我使用Node.js创建了开放式API,并在Google云端点上进行了部署,并且还尝试通过使用API密钥来实现对此API的保护。然后,我创建了openapi.yaml文件,在...