node.js存取google calendar API

 

const { google } = require('googleapis');
const dotenv = require('dotenv');
dotenv.config();
const auth = new google.auth.GoogleAuth({
//keyFile: './client_secret.json', // GOOGLE_APPLICATION_CREDENTIALS
scopes: [
'https://www.googleapis.com/auth/calendar',
'https://www.googleapis.com/auth/calendar.events',
],
});
const main = async () => {
const authClient = await auth.getClient();
const calendar = google.calendar({
version: 'v3',
auth: authClient,
})
calendar.calendarList.list().then(res => console.log(res.data));
};
main().catch(console.error)
view raw index.js hosted with ❤ by GitHub

留言