How Can I Use Pushsafer for Real-Time Alerts from My Custom IoT Device?
-
splatdreary
- Posts: 1
- Joined: 6. May 2025, 01:44
How Can I Use Pushsafer for Real-Time Alerts from My Custom IoT Device?
Hello everyone, I recently started working on a custom IoT project and came across Pushsafer as a possible solution for sending real-time alerts to my phone. I’ve looked through the documentation, but I’m still a bit unsure how to properly configure the API to send push notifications from my microcontroller. Has anyone successfully integrated Pushsafer with an ESP32 or Raspberry Pi? Do I need to handle SSL certificates or is there a simplified method? Also, how customizable are the alerts in terms of sound, icon, and priority? I’d appreciate any tips or example code. Thanks in advance!
- admin
- Site Admin
- Posts: 1053
- Joined: 1. Dec 2014, 12:41
Re: How Can I Use Pushsafer for Real-Time Alerts from My Custom IoT Device?
Examples you find here:
Raspberry: https://www.pushsafer.com/en/raspberry-pi
Arduino: https://www.pushsafer.com/en/arduino
Raspberry: https://www.pushsafer.com/en/raspberry-pi
Arduino: https://www.pushsafer.com/en/arduino
Pushsafer DE: Dir gefällt Service und Support! Dann freuen wir uns auf deine Bewertung!
Pushsafer EN: You like Service and Support! Then we look forward to your review!
Pushsafer.com Website - iOS - Android - Windows 10
Pushsafer EN: You like Service and Support! Then we look forward to your review!
Pushsafer.com Website - iOS - Android - Windows 10
-
thomasfrank
- Posts: 3
- Joined: 18. May 2025, 03:56
Re: How Can I Use Pushsafer for Real-Time Alerts from My Custom IoT Device?
To use Pushsafer with an ESP32 or Raspberry Pi, send an HTTPS POST request to https://www.pushsafer.com/api with your private key and desired parameters. The service handles SSL internally, so you don’t need to manage certificates manually, and alerts are highly customizable via the API.
Block Blast
Block Blast
-
otis5842
- Posts: 1
- Joined: 9. Sep 2025, 04:08
Re: How Can I Use Pushsafer for Real-Time Alerts from My Custom IoT Device?
Can Pushsafer notifications be sent directly via HTTPS from the device, or is it recommended to use an intermediary server for reliability?splatdreary wrote: ↑6. May 2025, 01:51Hello everyone, I recently started working on a custom IoT project and came across Pushsafer as a possible solution for sending real-time alerts to my phone. I’ve looked through the documentation, but I’m still a bit unsure how to properly configure the API to send push notifications from my microcontroller. Has anyone successfully integrated Pushsafer with an ESP32 or Raspberry Pi? Do I need to handle SSL certificates or is there a simplified method? Also, how customizable are the alerts in terms of sound, icon, and priority? I’d appreciate any tips or example code. Thanks in advance! Stickman Hook
- admin
- Site Admin
- Posts: 1053
- Joined: 1. Dec 2014, 12:41
Re: How Can I Use Pushsafer for Real-Time Alerts from My Custom IoT Device?
you can send a notification from everywhere. All you need is:
- an internet connection
- make an Pushsafer API request via http or https
You also can send notifications by email (Pushsafer email gateway) or by an url/link.
- an internet connection
- make an Pushsafer API request via http or https
You also can send notifications by email (Pushsafer email gateway) or by an url/link.
Pushsafer DE: Dir gefällt Service und Support! Dann freuen wir uns auf deine Bewertung!
Pushsafer EN: You like Service and Support! Then we look forward to your review!
Pushsafer.com Website - iOS - Android - Windows 10
Pushsafer EN: You like Service and Support! Then we look forward to your review!
Pushsafer.com Website - iOS - Android - Windows 10
-
asabinney
- Posts: 1
- Joined: 11. Nov 2025, 14:41
Re: How Can I Use Pushsafer for Real-Time Alerts from My Custom IoT Device?
There are many community examples of ESP32 + Pushsafer using WiFiClientSecure / setInsecure() or HTTPClient wrappers. For production prefer validating the server root CAsplatdreary wrote: ↑6. May 2025, 01:51Hello everyone, I recently started working on a custom IoT project and came across Pushsafer as a possible solution for sending real-time alerts to my phone. I’ve looked through the documentation, but I’m still a bit unsure how to properly configure the API to send push notifications from my microcontroller. Has anyone successfully integrated Pushsafer with an ESP32 or Raspberry Pi? Do I need to handle SSL certificates or is there a simplified method? Also, how customizable are the alerts in terms of sound, icon, and priority? I’d appreciate any tips or example code Among Us Thanks in advance!
