我正在使用 Graph API,使用Graph API中的示例代码我可以将文件上传到OneDrive
.
GraphServiceClient graphClient = new GraphServiceClient(authProvider);
var stream = "The contents of the file goes here."
await graphClient.Me.Drive.Items["{item-id}"]
.Request()
.PutAsync(stream);
问题是,我想包含Description到上传的文件中。我不知道这是否可能,但找不到相关信息。
天涯尽头无女友