-
-
Notifications
You must be signed in to change notification settings - Fork 215
New issue
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
Add ability to attach a google meet link to calendar event #270
Conversation
Thanks! |
This feature doesn't work for me does this feature need google workspace account or anything else? |
I tested this using a Google Workspace account, with admin permissions for Google Calendar. You might need to grant permission to attach conferenceData to the Calendar Event. Here's the section from the API that I referenced for this feature. https://developers.google.com/calendar/api/v3/reference/events#methods:~:text=writable-,conferenceData,-nested%20object Hope this helps! Let me know if you get this working and what you configured to fix it |
Can you confirm that it doesn't need a Google Wrokspace account ? |
Can anyone confirm this? |
@JoshTrebilco is there a way to remove google meet link once it has been added? or you need to completely remove the event and re-add it? |
No, with the current implementation, it allows you to add but not remove the meet link for a given event. You're correct in thinking that the only way is to remove the event and re-add it. |
This PR adds a new optional function to add a google meet link when creating an event.
When creating an Event, call
$event->addMeetLink();
The meet link can then be accessed using the
$event->googleEvent->hangoutLink
property.See screenshots below demonstrationing functionality.
This feature is backwards compatible with existing implementations, and shouldn't have any breaking changes.
Thanks for your time in reviewing this PR, I welcome any feedback or changes requested 😁