You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Users should be able to sign up, create tokens, and use that token to access the API.
We don't need to change any endpoint for now to make the token mandatory, but we can have a dummy endpoint to test the token support. The token support should be added to endpoints as a FastAPI injectable dependency.
The reason for this is to see (and maybe control) how much data is being fetched from the API by different users and services.
Update: we can enable the token support for endpoints that return all records, e.g. /species/all.
The text was updated successfully, but these errors were encountered:
Users should be able to sign up, create tokens, and use that token to access the API.
We don't need to change any endpoint for now to make the token mandatory, but we can have a dummy endpoint to test the token support. The token support should be added to endpoints as a FastAPI injectable dependency.
The reason for this is to see (and maybe control) how much data is being fetched from the API by different users and services.
Update: we can enable the token support for endpoints that return all records, e.g.
/species/all
.The text was updated successfully, but these errors were encountered: