目前是否可以获取已打开文档的共享链接(仅查看或编辑)?我想知道发送链接或添加其他用户的任务是否可以通过具有预定逻辑的javascript自动化。
答案 0 :(得分:1)
查看document.getFilePropertiesAsync方法。
结果对象将包含文件url(如果存在)。
function getFileUrl() {
//Get the URL of the current file.
Office.context.document.getFilePropertiesAsync(function (asyncResult) {
var fileUrl = asyncResult.value.url;
if (fileUrl == "") {
showMessage("The file hasn't been saved yet. Save the file and try again");
}
else {
showMessage(fileUrl);
}
});
}