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
Now that we are allowing public access to APIv3 endpoints, we can think about making different API queries using the common APIv3 endpoints to fetch small chunks of data instead doing one big call to the specific /_/addons/ one.
This would be transparent for our own JavaScript library and for users of the CustomEvent because it will be managed internally and the exact same JSON-like object will be returned.
This may be something good to explore since I'm seeing some benefits on caching (not all of the responses will be purged on each new build) and also in maintenance as well, since it's going to be one less big endpoint to maintain over time. Besides, we will become users of our own APIv3 which will make us to keep improving it over time.
Now that we are allowing public access to APIv3 endpoints, we can think about making different API queries using the common APIv3 endpoints to fetch small chunks of data instead doing one big call to the specific
/_/addons/
one.This would be transparent for our own JavaScript library and for users of the
CustomEvent
because it will be managed internally and the exact same JSON-like object will be returned.As a example,
projects.current
field can be populated with https://docs.readthedocs.io/en/stable/api/v3.html#project-detailsversions.current
field with https://docs.readthedocs.io/en/stable/api/v3.html#version-detailversions.active
field with https://docs.readthedocs.io/en/stable/api/v3.html#versions-listingThis may be something good to explore since I'm seeing some benefits on caching (not all of the responses will be purged on each new build) and also in maintenance as well, since it's going to be one less big endpoint to maintain over time. Besides, we will become users of our own APIv3 which will make us to keep improving it over time.
The text was updated successfully, but these errors were encountered: