You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As any user in the mentee platform, being partner, mentor, mentee, or admin, whenever
I create an event
I create a schedule meeting with another user
I send a message to anybody
I would like to have the ability to create a link for Google Meets video meeting to be used instantly or in a future date.
some research:
Leverage Google Calendar API:
Flask Backend:
Implement Google Calendar API integration in your Flask backend. This allows your app to create events in the user's Google Calendar (with their permission). Libraries like google-api-python-client can help.
During event creation, use the API to add a description section mentioning "Join meeting via Google Meet: [link here]".
2. Google Meet Link Generation:
During Event Creation:
Generate a random or unique meeting code for each event. You can use libraries like uuid in Python to generate unique identifiers.
Construct the Google Meet meeting link format: https://meet.google.com/newmeeting
OR https://meet.google.com/[meeting_code]
(Replace [meeting_code] with the generated code)
Event Description:
In the event description added via the Google Calendar API, include the constructed Google Meet link.
3. User Interface (React):
Event Display:
When displaying events in your React frontend, fetch the event description from the Google Calendar API.
Parse the description to extract the Google Meet link.
Provide a button or link for users to join the meeting directly using the retrieved Google Meet link.
Important Notes:
Ensure proper user authentication and authorization for Google Calendar API access.
Consider security implications of storing or transmitting meeting codes.
Additional Considerations:
Explore third-party services that offer Google Meet scheduling functionalities for developers (if available).
This approach relies on users having a Google account and allowing your app to access their calendar.
By implementing these steps, your application can create events with associated Google Meet links displayed within the event description. This allows users to seamlessly join the meetings using the provided link.
The text was updated successfully, but these errors were encountered:
As any user in the mentee platform, being partner, mentor, mentee, or admin, whenever
I would like to have the ability to create a link for Google Meets video meeting to be used instantly or in a future date.
some research:
Flask Backend:
Implement Google Calendar API integration in your Flask backend. This allows your app to create events in the user's Google Calendar (with their permission). Libraries like google-api-python-client can help.
During event creation, use the API to add a description section mentioning "Join meeting via Google Meet: [link here]".
2. Google Meet Link Generation:
During Event Creation:
Generate a random or unique meeting code for each event. You can use libraries like uuid in Python to generate unique identifiers.
Construct the Google Meet meeting link format:
https://meet.google.com/newmeeting
OR
https://meet.google.com/[meeting_code]
(Replace [meeting_code] with the generated code)
Event Description:
In the event description added via the Google Calendar API, include the constructed Google Meet link.
3. User Interface (React):
Event Display:
When displaying events in your React frontend, fetch the event description from the Google Calendar API.
Parse the description to extract the Google Meet link.
Provide a button or link for users to join the meeting directly using the retrieved Google Meet link.
Important Notes:
Ensure proper user authentication and authorization for Google Calendar API access.
Consider security implications of storing or transmitting meeting codes.
Additional Considerations:
Explore third-party services that offer Google Meet scheduling functionalities for developers (if available).
This approach relies on users having a Google account and allowing your app to access their calendar.
By implementing these steps, your application can create events with associated Google Meet links displayed within the event description. This allows users to seamlessly join the meetings using the provided link.
The text was updated successfully, but these errors were encountered: