We create an API that has authentication and authorization so that certain resources are only accessible by certain users.
DigitalOcean users that want to protect certain parts of their API.
A little understanding of how APIs work.
Chris Sev is the founder of scotch.io and Senior Developer Advocate at DigitalOcean. He loves trying to figure out the most efficient and practical way to build apps that we can ship to our customers.
Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Question about overriding the
find()
controller.If I don’t override anything, by default hitting the
localhost:1337/posts
url returns an array of all the posts.If I add an
aync find()
function into the controller (I’m adding url query param to also filter posts by specific user), and even just do astrapi.query('post').find()
, the result is now an object with keys rather than an array?Does it not use
strapi.query('post').find()
by default, and if it does, how come manually telling it to usestrapi.query('post').find()
doesn’t return the results as an array?Great video!