Join's meet link for you 😴
Bot for scheduling and entering google meet sessions automatically.
- Saving RAM: Using same browser for all meet pages
- Multiple meet logic added
- Open terminal on your PC
- Clone the repo
git clone https://github.com/AmanRaj1608/Google-Meet-Scheduler.git
- Go inside the project directory
- Rename
.env-example
file to.env
and replace your email and password there - Install dependencies
npm install
- Start the application
npm start
Now the project has started on localhost:3000
Now when you visit the page you will see things to add
- Meet Link
- Start Time
- End time
Then submit and do what you wanted to, it will log in and join meet for you.
You can add more links there to add it to the queue.
- Node.js should be installed
- Google Chrome with version 70+
- Works only on windows (see Issue #2 for more info)
On line 16
of server.js
file you can see a variable name head=false;
If you want to see bot automatically opening the page and filling login values and joining meet link then you can set the headless as flase.
But while for deployment we need headless as true.
If you want to deploy your instance of app you need it to set it up properly.
The main problem on deployment is that after deployment it will be hosted on different IP and when bot tries to sign in Google will ask to login again with one time password
.
More details here Issue #1
I recommend using digitalocean
You can however deploy it by creating an API that will ask for OTP and while sign-in you give that info to the server. This can be implemented as a new branch especially for deployment purpose
Project is made using Puppeteer which is a Node library which provides a high-level API to control headless Chrome or Chromium. We open a chromium app on server where we can add create open tabs see browser versions and everything.
So here we are using puppeteer-extra
and puppeteer-extra-plugin-stealth
which helps in creating an instance of chrome where google don't able to detect that it is created by puppeteer. So using this plugin we can login into google without filling capcha.
Made with ❤️ by Aman Raj
```