Member
Last active 4 years ago
Website2APK.keepScreenOn(true);
Its not working.
Tested on P30 PRO, Samsung s7 and dont work.
v4.2 PRO and 4.1 PRO - dont work.
It work very great, but from one day, without any changes in app or code ... didnt work.
Hello. You have a great product. Every year i buy a license for your product, but you dont have 3 BIG features.
1. Deeplink - I want for exemple to open app directly from my e-mail.
2. Let me to send notifications directly via onesignal/firebase, i dont want to use your dashboard notifications.
3. Let me edit source code after generate my app.
I can pay for this extra 100 euro annual.
Hello,
I want to send some notifications from firebase panel.
But i dont know how to set custom_data to open specified page from my app.
Thanks.
I had tried with:
$msg = array( 'body' => 'test', 'title' => 'Title Of Notification', 'sound' => 'default', 'click_action' => 'https://www.exemple.com' );
And is not working.
With this code i can send notifications and show correct body text. But anybody know how can i put a target url for this code?
<?php define('API_ACCESS_KEY', 'xxxx'); $registrationIds = 'xxxx'; $msg = array( 'body' => 'test', 'title' => 'Title Of Notification', 'sound' => 'default' ); $fields = array( 'to' => $registrationIds, 'notification' => $msg, 'priority' => 'high' ); $headers = array( 'Authorization: key=' . API_ACCESS_KEY, 'Content-Type: application/json' ); $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, 'https://fcm.googleapis.com/fcm/send'); curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($fields)); $result = curl_exec($ch); curl_close($ch); echo $result; ?>
Nope. Is not working. Same problem.
Deep link.
Api to show/hide ad banner.
Is not working. I had tried.
Hello.
I have a question about push notification.
Printscreen with sending notification via your api.
And printscreen with sending notification via firebase api.
I want to see all the text from notification. How can i do this with your api?
Thank you.
Hello,
How can i show banner an only on specified pages?
Thank you.