Hi everyone, I was working in an app for Alexa in Node JS that makes connection with a Smarthome based on a version of Google that uses GRPC.
I was wondering how I would make the authentication process with aws-sdk library as follows and where I can find some examples of this kind of apps:
const {auth} = require('google-auth-library'); async function getADC() { const res = await auth.getApplicationDefault(); return res.credential; }