I have installed OnlyOffice Document Server (OnlyOffice Docs) on Windows and run Java Example with these instructions : https://api.onlyoffice.com/editors/example/java.
I would like to enable JWT token on my Document Server, so I modified my "local.json" file as shown below :
"token": {
"enable": {
"request": {
"inbox": true,
"outbox": true
},
"browser": true
},
"inbox": {
"header": "Authorization"
},
"outbox": {
"header": "Authorization"
}
},
"secret": {
"inbox": {
"string": "my_secret"
},
"outbox": {
"string": "my_secret"
},
"session": {
"string": "my_secret"
}
}
But I don't know what to do next... Do I need to set the token value ? Or can I already see it somewhere ?
Thanks in advance for your answers
