I had a AWS Lambda function that is to update an Airtable. And I am going to modify the function to adopt OAuth2 authentication. However, after testing in Postman, it requires user login in a browser and select workspaces and bases. But it is absolut...
I am now working on integration the Airtable OAuth to my existing system.So I am trying to test on Postman first.But when I send the GET request (e.g. https://airtable.com/oauth2/v1/authorize?client_id=xxx...) for Authorization in Postman, it return ...
I am going to integrate the OAuth2 authentication with my existing apps.The first step is to send a GET request to https://airtable.com/oauth2/v1/authorize .But I failed on the first step.Here is the error:Spoilerhttp://localhost/?error=invalid_reque...
Is it possible to update a record without providing a record id.
For example, in my table, I have another unqiue key (e.g. unique_id), Can I use it instead like the following?
{ “unique_id”: “1234567”,
“fields”: { … }
}
HI, I am on an enterprise plan and sent an email to them. They replied that if an application is for internal use, we can use Personal Access Token (PAT) instead of OAuth2.By using PAT, I don't need to modify any code as I just change the API Key to ...