Webcamxp Server 8080 Secret32 Updated | My
Use a password manager to generate a 16+ character random string. Forget "secret32" forever.
The legacy secret32 parameter was useful for automation scripts. For example, a Python script could download a snapshot:
http://admin:password@localhost:8080/snapshot.jpg?secret32 my webcamxp server 8080 secret32 updated
In updated WebcamXP, the correct method is:
http://admin:api_token@localhost:8080/api/v1/snapshot/cam1 Use a password manager to generate a 16+
Here’s a PowerShell script to grab an image from your updated server every minute: If you are using a script from 2018 that relies on
while ($true)
$response = Invoke-WebRequest -Uri "http://localhost:8080/api/v1/snapshot/cam1?token=YOUR_NEW_TOKEN" -OutFile "C:\WebcamXP\Snapshots\$(Get-Date -Format 'yyyyMMdd_HHmmss').jpg"
Start-Sleep -Seconds 60
If you are using a script from 2018 that relies on ?secret32, it will fail in the updated version. Replace all instances with the new API token method documented above.

