Using a Python OAuth library, I try to build an Airtable token like the Google method. I get errors with redirect URIs and API version. Example code:
import custom_oauth
def acquire_token():
oauth_session = custom_oauth.Session(client_id='ABC123', redirect_url='http://127.0.0.1')
token = oauth_session.obtain_token(auth_endpoint='https://airtable.com/auth', scopes=['read'])
return token
print(acquire_token())