1

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.

enter image description here

Is it possible?

Herbert
  • 540
  • 1
  • 6
  • 18

1 Answers1

2

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

Rubén
  • 34,714
  • 9
  • 70
  • 166