Issue
I currently have an angular JS webapp where I generate a document using docxtemplater from my firebase cloud function. I wonder if it is possible to have the generated document automatically available on my company’s sharepoint (via a link?)
Solution
I understand that after generating the docs you store them in Cloud Storage for Firebase. So it will be easy to generate a signed URL for each of these docs.
You would then need to implement a process that push/pull the signedURLs to/from Sharepoint.
From the Firebase side, Cloud Functions could help by:
- Calling an API exposed by the backend of your Sharepoint infrastructure and posting the signed URLs;
- OR, by exposing an API endpoint (HTTPS Cloud Function) that your Sharepoint infrastructure would call to get the signed URLs.
Answered By – Renaud Tarnec
This Answer collected from stackoverflow, is licensed under cc by-sa 2.5 , cc by-sa 3.0 and cc by-sa 4.0