

Hasty Treat - Making a Vaccine Bot with JavaScript
Jun 7, 2021
Dive into the fascinating world of building a vaccine bot with JavaScript! The hosts unravel the challenges of scraping live data from pharmacy websites and managing API intricacies. You'll learn about using Telegram for streamlined notification delivery and innovative strategies to enhance user experience. Plus, enjoy humorous tales of plant propagation, highlighting the joys and struggles of gardening enthusiasts. It’s a blend of coding, creativity, and personal anecdotes that keeps it engaging!
AI Snips
Chapters
Transcript
Episode notes
Vaccine Bot Motivation
- Wes built a vaccine bot to find available appointments due to Canada's inefficient rollout.
- The bot checked pharmacy websites for availability and notified him via Telegram.
Reverse Engineering Websites for Data
- Reverse engineer websites to find data by inspecting network requests in your browser's developer tools.
- Look for JSON responses containing the data you need.
Replicating Requests
- Replicate the request using
fetch
in Node.js, copying as Node.js Fetch. - This method includes necessary cookies and headers for server-side requests.