Push Notification Forward HTTP

Contains ads
5K+
Downloads
Content rating
Everyone
Screenshot image
Screenshot image
Screenshot image
Screenshot image
Screenshot image
Screenshot image
Screenshot image

About this 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;

?>
Updated on
Aug 19, 2023

Data safety

Safety starts with understanding how developers collect and share your data. Data privacy and security practices may vary based on your use, region, and age. The developer provided this information and may update it over time.
This app may share these data types with third parties
Device or other IDs
No data collected
Learn more about how developers declare collection
Data is encrypted in transit
Data can’t be deleted

What's new

- Minor fixes