我目前的问题是:我需要能够执行以下调用:
https://{Net-IP}:{Net-Port}/rest/devices/{deviceName}.{deviceID}
首先定义一个主机变量,例如:
主持人:{Net-IP}:{Net-Port}
是不可能的。
其次,如果我然后尝试在路径中实现路径参数,例如:
/devices/{deviceName}.{deviceID}/measurePoints:
get:
summary: Method returns list of measure points
parameters:
- name: deviceName
in: path
type: string
required: true
description: device Name
- name: deviceID
in: path
type: string
required: true
description: device ID
然后它说不允许路径模板。
我需要为Postman翻译这种类型的电话,感谢您的帮助!