node-red / node-red-web-nodes

A collection of node-red nodes aimed at web services
Apache License 2.0
226 stars 157 forks source link

Google Calendar #297

Open 7NT opened 2 years ago

7NT commented 2 years ago

Need help to get started:

I enabled Calendar API, and successfully inserted an event in Calendar which showed up on my Google calendar.

But when I triggered the Calendar node after I inserted my test event, I got an error message that "Error: no event found",

Also, the calendar In never showed the new event message.

Did I configure wrong somewhere (Calendar out if working), I am using the default primary calendar.

matz33 commented 2 years ago

Hi, I have the same issue as described : "Calendar out" creates the event. "Calendar" says "Error: no event found". Using 0.2.2 version.

matz33 commented 2 years ago

I found why and put here if it can help, also maybe @7NT : I use an "Inject" node to force the Calendar node to return the next event. But by default, this node inject Timestamp in msg.payload. And the Calendar node use msg.payload to filter the next event to show. So with Timestamp in it, it can not find any event :) Juste delete this msg.payload from inject node, and it worked.