我无法从使用 restAPI 的专业历史学家那里访问包含“#”或“/”的标签的插值数据。我能够获得所有其他标签的插值数据。
例如,使用 tagName 访问插值数据:Tag123#Value
oauth.get("https://<server>:8443/historian-rest-api/v1/datapoints/interpolated/Tag123%23Value/<starttime>/<endtime>/0/60000")
返回
error code 400 - request was malformed.
但是我能够获取 Tag123#Value 的当前值
oauth.get("https://<server>:8443/historian-rest-api/v1/datapoints/currentvalue?tagNames=Tag123%23Value")
注意:我已经对标签进行了 URI 编码,这使我能够检索当前值 - 但是我怀疑问题与 URI 编码有关......