Encore bonjour a vous tous,
J’expérimente l’utilisation d’une app Node.js qui pourrais accéder a un fichier Google worksheet en utilisant us Service account.
J’ai suivi …. je pense…les directives données par: https://developers.google.com/sheets/api/quickstart/nodejs?hl=fr
Lorsque j’exécute… grelot:test $ node .
L’erreur suivante se présente: TypeError: Cannot read properties of undefined (reading 'redirect_uris’) at authenticate (/home/grelot/node_modules/@google-cloud/local-auth/build/src/index.js:50:15) at authorize (/home/grelot/Dropbox/Serge/Programmation/js-node/test/index.js:58:18)
La routine local-auth de googleapis@105 @google-cloud/local-auth@2.1.0 appelée par async function authorize() semble chercher 'redirect_uris’ , probablement dans le fichier credentials.json.
Après recherche Gooogle et avoir trouvé https://stackoverflow.com/questions/61912639/typeerror-cannot-read-property-redirect-uris-of-undefined
J’ai essayé d’ajouter "redirect_uris": "http://localhost:3000/oauth2callback", mais la même erreur persiste.
Ou dois-je chercher?
Merci de votre temps.
Serge