diff --git a/docs/features/webhooks.md b/docs/features/webhooks.md index 935e7bd..5270705 100644 --- a/docs/features/webhooks.md +++ b/docs/features/webhooks.md @@ -248,6 +248,7 @@ Remember to adhere to best practices for security and perform thorough testing t ## Examples 💡 -- [FastAPI webhook processor](https://github.com/android-sms-gateway/example-webhooks-fastapi): Demonstrates registration, HMAC validation, and payload handling. +- [Flask webhook processor](https://github.com/android-sms-gateway/example-webhooks-flask): Demonstrates registration, HMAC validation, and payload handling with Flask. +- [FastAPI webhook processor](https://github.com/android-sms-gateway/example-webhooks-fastapi): Demonstrates registration, HMAC validation, and payload handling with FastAPI. - [Telegram Forwarder Function](https://github.com/android-sms-gateway/example-telegram-forwarder-fn): Forwards SMS to Telegram using a cloud function. - [Web Client](https://github.com/android-sms-gateway/web-client-ts): Node.js client for sending/receiving SMS via Socket.io. diff --git a/docs/resources/examples.md b/docs/resources/examples.md index 2632545..145da3a 100644 --- a/docs/resources/examples.md +++ b/docs/resources/examples.md @@ -6,6 +6,7 @@ In this section, you will find links to examples related to this project. We do ### Official Examples +- [Flask webhook processor](https://github.com/android-sms-gateway/example-webhooks-flask) - A Flask app that demonstrates registration, HMAC validation, and payload handling. - [FastAPI webhook processor](https://github.com/android-sms-gateway/example-webhooks-fastapi) - A FastAPI app that demonstrates registration, HMAC validation, and payload handling. - [Discord Forwarder Function](https://github.com/android-sms-gateway/example-discord-forwarder-fn) - A Cloud Function to seamlessly forward SMS messages to a Discord server using webhooks. - [Telegram Forwarder Function](https://github.com/android-sms-gateway/example-telegram-forwarder-fn) - A Cloud Function to seamlessly forward SMS messages to a Telegram chat using webhooks.