Home security systems provide families with security by alerting them by SMS in the event of an intruder or other suspicious occurrence. They are implemented using software, but in order to operate in real time, they must be connected to sensors.
- OTP verification for verified numbers using Twilio
- Token Authentication for Secure Acess
- Real-time analysis graph for dynamic data visualization
- Event Notifications through SMS
- User Activity Log
- Face Recognition Model
chmod +x run_project.shExecute the script by running:
./run_project.sh- Method: POST
- URL:
/register/ - Headers: Content-Type: application/json
{
"phone_number":123456789,
"password": "secretpassword"
}
- Method: POST
- URL:
/login/ - Headers: Content-Type: application/json
{
"phone_number":123456789,
"password": "secretpassword"
}
- Method: POST
- URL:
/verify_otp/ - Headers: Content-Type: application/json
{
"otp_code":1234
}