我正在使用 guacamole 0.9.14 ,我想获取连接的共享链接。所以我正在使用http.get
andhttp.post
来获取密钥。
起初,我从
dns/guacamole/api/tokens
之后,我得到了 id 连接和 uuid 会话dns/guacamole/api/session/data/mysql/activeConnections?token=????
现在我想从以下位置获取密钥:
dns/guacamole/api/session/tunnels/uuidconnection/activeConnection/sharingCredentials/idsession?token=???
但我有这个结果:
{
"message": "No such tunnel.",
"translatableMessage": {
"key": "No such tunnel.",
"variables": null
},
"statusCode": null,
"expected": null,
"type": "NOT_FOUND"
}
当我http.get
获取 id session 和 uuid 连接时,令牌似乎已经改变。
有什么建议吗?