Dashing widget to display the next and some subsequent Google Calendar events using the Google Calendar API v3.
I use this widget to display my shift calendar - see the screenshot below
This widget works with API v3 and requires a service account to be set up via the Google Developer's Console. Once a project is set up, enable the Calendar API. On the Credentials page create a new OpenID and download the p12 key file - set up the path to this file in the job file and grant the email address access to the relevant calendar.
The job file defines how many events to get from the calendar and when to start the search. My version gets the next 6 events.
Add to Gemfile:
gem 'google-api-client', '>= 0.8'
Run
bundle install
Download the Moment javascript library and add to your javascript assets. Add #= require moment.js
to the application.coffee script. You can also use moment.min.js
if you've downloaded that.
I'm struggling to get this running. Let me summary what's current setup (after changing ie Gemfile to gem 'google-api-client', '< 0.9')
Gemfile:
application.coffee:
google_calendar.rb:
AFAIK, set up is fine.
API is allowed. Key was generated. Calendar is shared with that service account.
What I am getting is 'Next event:' but that's it. Enabling debugging I was rewarded with following
with help of google I found that downgrade of ruby (now ruby 2.5.5p157 (2019-03-15 revision 67260) [i386-linux-gnu]) but this leads me
rvm
and other funnies - which would be task for upcoming days. Before going this path, I'm wondering if you guys have any hints.thanks!