You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let stream =fs.createReadStream('./logo.png'); //path to local file
152
152
client
153
153
.api('/me/drive/root/children/logo.png/content') // path to the destination in OneDrive
154
-
.put(stream, (err) => {
154
+
.putStream(stream, (err) => {
155
155
console.log(err);
156
156
});
157
157
````
@@ -351,4 +351,4 @@ Copyright (c) Microsoft Corporation. All rights reserved.
351
351
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.
352
352
353
353
## Third Party Notices
354
-
See [Third Party Notices](https://github.com/microsoftgraph/msgraph-sdk-javascript/blob/master/THIRD%20PARTY%20NOTICES) for information on the packages that are included in the [package.json](https://github.com/microsoftgraph/msgraph-sdk-javascript/blob/master/package.json)
354
+
See [Third Party Notices](https://github.com/microsoftgraph/msgraph-sdk-javascript/blob/master/THIRD%20PARTY%20NOTICES) for information on the packages that are included in the [package.json](https://github.com/microsoftgraph/msgraph-sdk-javascript/blob/master/package.json)
0 commit comments