Document Server version: 7.4
Type of installation of the Document Server: docker
OS: Ubuntu
I’m integrating onlyoffice with a web app. I have some confusion about the document key.
In the docs it is stated that it can be 20 characters long or be the the same as the url and be up to 128 characters long.
Given that the current document version has the following as its “version” uuid:
“136883d8-72eb-5d92-b6c9-a968e5ef50ad”
Does this mean i can have the following config?
{
document: {
key: "http://myapp.com/onlyoffice/136883d8-72eb-5d92-b6c9-a968e5ef50ad",
url: "http://myapp.com/onlyoffice/136883d8-72eb-5d92-b6c9-a968e5ef50ad",
...
},
...
}
Would be valid?