I'm trying to use a web app deployed via Google Apps Script inside Airtable Extensions and Automations by selecting "Run a script." However, I'm encountering the following error:
Response status was 302 'Moved Temporarily' but redirect mode was set to 'error'
Despite this error, the action triggered by the request is actually executed successfully.
I tested the same request using Thunderclient and did not encounter the error — everything worked as expected.
Searching the community, I found a workaround suggesting the creation of a webhook to handle the requests. I implemented this through Zapier, and using the webhook, the requests now run successfully within Airtable (both in Extensions and Automations).
However, this setup isn't ideal for me because it adds an unnecessary (and paid) middle step just to retrieve a simple success response from my Apps Script API.
My questions:
-
Is there a way to configure Airtable to prevent or handle this 302 error directly?
-
Or, is there a better solution to integrate my Google Apps Script web app without needing a third-party webhook?
Thanks so much for your attention and help!