我正在使用JavaScript API将文件上传到OneDrive。
<script>
$('#file-to-save').change(function(){
console.log ("Uploading");
fileaddress = $('#file-to-save').val();
var folder_id = 'folder.1d67c8c08569256a.1D67C8C08569256A!36156';
console.log(folder_id);
WL.upload({
path: folder_id,
element: 'file-to-save',
overwrite: 'rename'
}).then(
function(response) {
// Handle the response
$('#status').html("Upload complete. Getting shared link...");
// TODO: Get the file id
var file_id = response.id;
getSharedLink(file_id);
},
function(error) {
console.log("Error");
$('#status').html(error.error.message);
}
);
});
</script>
问题是文件上传为私有,用户需要登录其MS帐户才能查看。是否可以通过API将隐私更改为公开?
答案 0 :(得分:2)
今天通过OneDrive开发人员API提供的唯一共享是生成阅读/编辑/嵌入共享链接:http://msdn.microsoft.com/en-us/library/dn659731.aspx#get_links_to_files_and_folders
如果用户使用生成的链接查看该项目,则无需登录。不幸的是,这是限制性的,因为一个人必须使用该链接访问该项目并且它不能覆盖整个项目通过网站提供的OneDrive共享方案范围。