To know how to get the users who are editing the document, according to this link, ONLYOFFICE Api Documentation - Frequently asked questions, we just need to send the object with “c”: “info”, the corresponding key and the token, and we receive the object which contains the attribute “users”: [“6d5a81d0”, “78e1e841”].
However, I am sending to the document command service and receiving the following object:
{
“key”: “482319898”,
“error”: 0
}
My document command service is in a docker, in a port 8082. My request is the following:
http://localhost:8082/coauthoring/CommandService.ashx
Where is the problem? How can I get the users who are currently editing the document?