I am working on Google Apps Script.
I have two GAS projects. One has data set in the script property. I want to read the property value from another GAS project.
Is it possible?
I am working on Google Apps Script.
I have two GAS projects. One has data set in the script property. I want to read the property value from another GAS project.
Is it possible?
This can't be done directly but it's possible if you create an API for the script project holding the script property by using doPost
and calling if from the other project by using UrlFetchApp
Many could qualify the above as an over-engineered solution as it is simpler to use a spreadsheet as a "properties" store.
Related