NeilSchneider
3 years agoQrew Cadet
Re: Using the RESTful Quickbase API inside a code page without a Auth Token
You do need to use a token, but the RESTful API has a mechanism for generating a token specific to the users login. This allows you to have a single token that is used by all users on startup, and then generate a token specific to the user and table. This has two advantages:
1) Updates to the DB are assigned to the specific user
2) The rate limits for API calls are based on the individual user.
There is additional overhead for the code. The generated token is for the individual table and the user, and it expires every 5 minutes. So you have to refresh the tokens every 5 minutes.
The instructions are here:
https://developer.quickbase.com/operation/getTempTokenDBID
------------------------------
Neil Schneider
------------------------------
1) Updates to the DB are assigned to the specific user
2) The rate limits for API calls are based on the individual user.
There is additional overhead for the code. The generated token is for the individual table and the user, and it expires every 5 minutes. So you have to refresh the tokens every 5 minutes.
The instructions are here:
https://developer.quickbase.com/operation/getTempTokenDBID
------------------------------
Neil Schneider
------------------------------