使用Microsoft Graph在个人OneDrive上复制文件。下面的代码工作正常,并且文件被复制。根据文档,由于复制是异步操作,因此该操作应返回监视器url。
如何获取监视器URL?以下代码中的PostAsync返回null。
var destination = new Microsoft.Graph.ItemReference
{
Path = $"/drive/root:{toPath}"
};
// result is null, where is monitor URL?
var result = await graphClient.Me.Drive.Root.ItemWithPath(fromFilePath)
.Copy(null, destination)
.Request()
.PostAsync();