X

xplooosive

Member

Last active 3 years ago

  1. 3 years ago
    Tue Feb 23 08:52:34 2021

    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.

  2. Mon Jan 4 10:44:59 2021
    X xplooosive posted in Suggestions for Update v4.2.

    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.

  3. 4 years ago
    Mon Mar 23 10:23:00 2020
    X xplooosive started the conversation Compose notification from firebase.

    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.

    -image-

    Thanks.

  4. Wed Jul 31 14:38:59 2019

    I had tried with:

    $msg             = array(
        
        'body' => 'test',
        'title' => 'Title Of Notification',
        'sound' => 'default',
        'click_action' => 'https://www.exemple.com'
        
    );

    And is not working.

  5. Wed Jul 31 11:20:49 2019

    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;
    ?>
  6. Tue Jul 30 16:55:07 2019

    Nope. Is not working. Same problem.

  7. Sat Jun 15 18:51:29 2019
    X xplooosive posted in Suggestions for Update v3.4.

    Deep link.
    Api to show/hide ad banner.

  8. Thu Jun 13 12:53:30 2019

    Is not working. I had tried.

  9. Thu Jun 13 12:41:31 2019
    X xplooosive started the conversation Push notifications expanded description content.

    Hello.

    I have a question about push notification.

    Printscreen with sending notification via your api.
    -image-

    And printscreen with sending notification via firebase api.
    -image-

    I want to see all the text from notification. How can i do this with your api?

    Thank you.

  10. Fri Jun 7 10:17:31 2019
    X xplooosive started the conversation Display Banner Ad on Specific Pages.

    Hello,

    How can i show banner an only on specified pages?

    Thank you.

View more