I'm developing a web application that gets calendar information for multiple users. It is a communication application used in the company.
I want to be able to see today's schedule for other users.
Vue is used for the front end, and node.js is used for the server side.
Each user authenticates with OAuth of calender api. An access token is created when you authenticate.
The access token created here only has access to one user, right?
In this case, I need to store each user's access token somewhere.
Will it be stored in a database or cookie?