Welcome to Software Development on Codidact!
Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.
Post History
Temporary notice: this is part of an ongoing project of transferring and splitting my canonical from Stack Overflow on common errors in Google Apps Script. As soon as the Q&As are finalized, ...
Question
google-apps-script
#1: Initial revision
How to solve the "Cannot call from this context" error?
> Temporary notice: this is part of an ongoing project of transferring and splitting [my canonical](https://stackoverflow.com/q/62336082/11407695) from Stack Overflow on common errors in Google Apps Script. As soon as the Q&As are finalized, it will be removed. Oftentimes, when attempting to run a method on a [built-in Google service](https://developers.google.com/apps-script/guides/services) from a [standalone script](https://developers.google.com/apps-script/guides/standalone), the runtime throws an exception that the given method cannot be run in "this context". The exact error message is always structured as follows: > Exception: Cannot call \<service name\>.\<method name\>() from this context What is the underlying reason for the error and how to solve it?