I am using a Google Cloud Storage bucket to upload some of my users files. I do not want them to appear as public, so I created a service account representing my frontend app.
I want to know how to make Authenticated Request to Google Cloud Storage, without using the @google-cloud/storage
npm package from my frontend app.
I know I need to include Auhtorization: Bearer <token>
in my request headers but, how do I get this token ?
I'm using React on my frontend app.