Created
December 11, 2018 14:39
-
-
Save bvenkatr/bbb817bbdea796d4ae8964b408cc6b61 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const {google} = require("googleapis"); | |
const path = require("path"); | |
// const {getCredentials} = require("./GoogleAuthenticator"); | |
// Requiring json file is not working here, as google.auth.getClient accepts file path | |
// let keyFile = require("./google-service-account-credentials.json"); | |
let keyFile = path.join(__dirname, "google-service-account-credentials.json"); | |
// console.log(keyFile); | |
let scopes = [ | |
'https://www.googleapis.com/auth/spreadsheets', | |
'https://www.googleapis.com/auth/drive', | |
'https://www.googleapis.com/auth/calendar', | |
"https://www.googleapis.com/auth/contacts", | |
"https://www.googleapis.com/auth/plus.login" | |
]; | |
const run = async () => { | |
// const ga = await getCredentials(); | |
const {people} = await google.people({ | |
version: "v1", | |
auth: await google.auth.getClient({ | |
keyFile, | |
scopes | |
}) | |
}); | |
// const response = await people.connections.list({ | |
// resourceName: "people/me", | |
// personFields: "names" | |
// }); | |
const response = await people.get({ | |
resourceName: "people/me", | |
personFields: "names" | |
}); | |
console.log(response); | |
}; | |
run(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment