How can I programmatically get the used service account ID which is used by the running JavaScript cloud function?
In other words, how to implement this function:
function getServiceAccountIdUsedByFirebase() {
/// ???
}
The function is meant to be called after initialization, not before.
3