Push Notification Forward HTTP

Enthält Werbung
10 Tsg.+
Downloads
Altersfreigabe
Jedes Alter
Screenshot
Screenshot
Screenshot
Screenshot
Screenshot
Screenshot
Screenshot

Über diese App

It is an application that saves push notification as HTTP {S} forwarding / history

The data received in the notification
You can HTTP POST GET to the configured url!

■ You need [Access to notification] permission of this application to use transfer function

■ Forward notifications, select the app to save as history

■ You can set the parameters to receive at the transfer destination

■ You can set additional parameters

■ You can narrow down in the history list

■ You can update it by pull-to-refresh the list

Example your server


<?php

$name = $_GET["name"];
$pkg = $_GET["pkg"];
$title = $_GET["title"];
$text = $_GET["text"];
$subtext = $_GET["subtext"];
$bigtext = $_GET["bigtext"];
$infotext = $_GET["infotext"];

$message = "";

if($pkg=="com.sample.app"){
$message = "from sample app {$title} ${text} ";
} else {
$message = "{$title} !! ${text} ";
}

$cmd = "/usr/bin/curl -X POST -d \"text=" . $message . "\" http://sample.com/to_sample";
$ret = exec($cmd);

echo $ret;

?>
Aktualisiert am
19.08.2023

Datensicherheit

Was die Sicherheit angeht, solltest du nachvollziehen, wie Entwickler deine Daten erheben und weitergeben. Die Datenschutz- und Sicherheitspraktiken können je nach Verwendung, Region und Alter des Nutzers variieren. Diese Informationen wurden vom Entwickler zur Verfügung gestellt und können jederzeit von ihm geändert werden.
Diese App kann die folgenden Datentypen an Dritte weitergeben
Geräte- oder andere IDs
Daten werden bei der Übertragung verschlüsselt
Daten können nicht gelöscht werden

Neuigkeiten

- Minor fixes