Overview
Access Wyze camera live feeds through the web portal.
Prerequisites
- Wyze account with registered camera
- Google/Apple/Facebook/Amazon account for OAuth login (optional)
Workflow
Step 1: Navigate to Wyze Web Portal
Go to https://my.wyze.com
Step 2: Log In
If not logged in:
- Click button "Log in Wyze Web Portal"
- On auth page, choose login method:
- Enter email and password, then click button "Log in"
- Or click button "Google sign-in" / "Apple sign-in" / "Facebook sign-in" / "Amazon sign-in"
- Complete OAuth flow if using social login
Step 3: Access Cameras
- Click link "Cameras" in the navigation menu
- Camera list will load showing all registered cameras
Step 4: View Live Feed
- Click button "Cameras" to expand camera list (if collapsed)
- Find target camera by name
- Click button "View" next to the camera
Step 5: Wait for Live Stream
- Wait for "LIVE" indicator to appear
- Stream typically connects within 5-10 seconds
- If "Web Connection Failed" error appears, click button "Reconnect"
Capturing Video Frame (Advanced)
To capture a high-resolution frame from the live stream:
const video = document.querySelector('video');
const canvas = document.createElement('canvas');
canvas.width = video.videoWidth;
canvas.height = video.videoHeight;
canvas.getContext('2d').drawImage(video, 0, 0);
canvas.toDataURL('image/png'); // Returns base64 encoded image
Troubleshooting
| Issue | Solution |
|---|---|
| "Web Connection Failed" | Click button "Reconnect", wait 5-10 seconds |
| Camera not listed | Check camera is online in Wyze mobile app |
| Stream stuck on loading | Refresh page, try again |
| Firmware update required | Update camera firmware via Wyze mobile app |
Notes
- Live view requires stable internet connection
- Camera must be powered on and connected to WiFi
- Some features may require Wyze Cam Plus subscription