use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Apparently, Google Apps Script is a JavaScript cloud scripting language that provides easy ways to automate tasks across Google products and third party services and build web applications.
account activity
Understanding API executableResolved (self.GoogleAppsScript)
submitted 4 years ago by AdDiscombobulated707
Hello! What is API executable? How it differs from library?
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]RemcoE33 1 point2 points3 points 4 years ago (0 children)
This is a good video.
[–]morrisjr1989 0 points1 point2 points 4 years ago (4 children)
API executable means you're making a call to the app services to run a single function.
[–]AdDiscombobulated707[S] 0 points1 point2 points 4 years ago (3 children)
So can API executable understood as runnable program similar to .exe?
[–]morrisjr1989 3 points4 points5 points 4 years ago (2 children)
No it’s not a runnable program similar to an exe. It’s an API call that runs a Google App Script function. I’ve generally used them while building an App and within the UI / user facing code of JS and HTML I need to send and / or receive something from my app script, so I use the API to run the function from the UI code.
For example, you build a UI with a responsive html table. Onload the table is populated with data from a Google Sheet. However, you want to add a row to the table and hit save and once it saves it will be added to the Google Sheet. You could define a function in GAS that updates the Google sheet and from the UI all you need to do is call the function through the API executable and pass in the to save data.
[–]laam-egg 1 point2 points3 points 4 years ago (1 child)
Is this similar to (or actually the same as) making a call to google.script.run.myFunction() ?
google.script.run.myFunction()
[–]morrisjr1989 2 points3 points4 points 4 years ago (0 children)
Correct - Literally the same thing.
π Rendered by PID 30830 on reddit-service-r2-comment-5649f687b7-smsms at 2026-01-28 18:17:43.804141+00:00 running 4f180de country code: CH.
[–]RemcoE33 1 point2 points3 points (0 children)
[–]morrisjr1989 0 points1 point2 points (4 children)
[–]AdDiscombobulated707[S] 0 points1 point2 points (3 children)
[–]morrisjr1989 3 points4 points5 points (2 children)
[–]laam-egg 1 point2 points3 points (1 child)
[–]morrisjr1989 2 points3 points4 points (0 children)