We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
// Sample CalendarAPI settings const SERVICE_ACCT_ID = '[email protected]'; const key = require('googleapi-key.json').private_key; const TIMEZONE = 'UTC+06:00'; const CALENDAR_ID = { 'primary': '[email protected]', 'calendar-1': '[email protected]', 'calendar-2': '[email protected]' };
Please help me.
The text was updated successfully, but these errors were encountered:
require('googleapi-key.json')
may need to be require('./googleapi-key.json') so it looks for a local file. Do you have your .json file there?
require('./googleapi-key.json')
Sorry, something went wrong.
No branches or pull requests
My calendar settings.js config
// Sample CalendarAPI settings
const SERVICE_ACCT_ID = '[email protected]';
const key = require('googleapi-key.json').private_key;
const TIMEZONE = 'UTC+06:00';
const CALENDAR_ID = {
'primary': '[email protected]',
'calendar-1': '[email protected]',
'calendar-2': '[email protected]'
};
Please help me.
The text was updated successfully, but these errors were encountered: