Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

791
Views
¿Cómo programar una reunión de Google y obtener el enlace de la reunión en NodeJs?

En mi proyecto, tengo que programar una reunión de Google en un momento dado entre dos usuarios cuya identificación de correo electrónico tengo en NodeJS. ¿Alguien puede ayudarme con respecto a esto?

over 4 years ago · Santiago Trujillo
1 answers
Answer question

0

Deberá usar la API de Google Calendar para crear un Google Meet, aquí hay un ejemplo de código de trabajo de cómo hacerlo.

Crear un evento de reunión de Google Ejecutar en Fusebit
 // You already have the user emails from your NodeJS app const attendeesEmails = [ { 'email': 'user1@example.com' }, { 'email': 'user2@example.com' } ]; const event = { summary: 'Coding class', location: 'Virtual / Google Meet', description: 'Learn how to code with Javascript', start: { dateTime: '2022-01-18T09:00:00-07:00', timeZone: 'America/Los_Angeles', }, end: { dateTime: '2022-01-18T09:30:00-07:00', timeZone: 'America/Los_Angeles', }, attendees: attendeesEmails, reminders: { useDefault: false, overrides: [ { method: 'email', 'minutes': 24 * 60 }, { method: 'popup', 'minutes': 10 }, ], }, conferenceData: { createRequest: { conferenceSolutionKey: { type: 'hangoutsMeet' }, requestId: 'coding-calendar-demo' } }, }; const response = await calendar.events.insert({ calendarId: 'primary', resource: event, conferenceDataVersion: 1 }); const { config: { data: { summary, location, start, end, attendees } }, data: { conferenceData } } = response; // Get the Google Meet conference URL in order to join the call const { uri } = conferenceData.entryPoints[0]; console.log(`📅 Calendar event created: ${summary} at ${location}, from ${start.dateTime} to ${end.dateTime}, attendees:\n${attendees.map(person => `🧍 ${person.email}`).join('\n')} \n 💻 Join conference call link: ${uri}`); });
over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!