Hello,
I'm looking for a way how to get a script id of a library.
Something like the following.
Library
function libId()
{
ScriptApp.getScriptId();
}
Program
function caller()
{
libId() //but here I need to get the library id. It gives me the program id instead, which makes sense but I can't come up with a way how to get the lib id instead.
}
Please help.
Thank you!
Petr