Help
Mike_Pennisi
7 - App Architect
7 - App Architect
since ‎Mar 25, 2020
‎Nov 29, 2022

User Statistics

  • 70 Posts
  • 3 Solutions
  • 0 Kudos given
  • 67 Kudos received

User Activity

Many use cases for Airtable’s Scripting Block (and also for Custom Blocks) involve making requests to services running on another domain. Since scripts execute in the context of a web browser, such requests are restricted according to the Cross-Origi...
The Scripting Block offers a number of asynchronous functions for collecting input from the user. To date, all the example scripts I’ve seen use these APIs one at a time in a sequential fashion, e.g.const name = await input.textAsync('What is your na...
Fetch YouTube video metadata and insert it into each row in a given table. Source code /** * Copyright 2020 Bocoup * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation...
I’d like to write a script for the scripting block that includes instructions on first-time usage. Folks won’t need to be reminded of this every time they run the script, so rendering it constantly is not ideal. I’ve experimented with using the input...
Some scripts require sensitive input such as HTTP API access tokens. Depending on how the base is shared, it may not be appropriate to store this input in the scripts themselves. In these cases, it may be preferable to prompt the user with each execu...