'React JS Download Document from Server and Upload it on another Server
I'm using React JS to DownloadDocument through Rest API. API Returning to me
Rest API in Dot Net Core -
Stream stream = DownloadDocument(accessToken);
string mimeType = "application/pdf";
return File(stream, mimeType, "DC_Signed.pdf");
Now in React JS, we have to Read/Download Documents and Upload them on Third Party API i.e SharePoint
Any suggestions or ways to do that?
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
