Can I set the “Difference push receive setting in firebase?”Does Android support near real time push notification?Why is the Android emulator so slow? How can we speed up the Android emulator?What is the difference between “px”, “dip”, “dp” and “sp”?Will iOS launch my app into the background if it was force-quit by the user?Does firebase handle push notifications?No notification sound when sending notification from firebase in androidHow to send push notification from Firebase using google apps script?how to trigger push notifications of firebase from an ios device using swift3Firebase Push Notifications not received if app is closedfirebase cloud messaging Android push notification not working

Count All Possible Unique Combinations of Letters in a Word

Counterfeit checks were created for my account. How does this type of fraud work?

Why is it recommended to mix yogurt starter with a small amount of milk before adding to the entire batch?

How to parse 「場合でも」

How do I farm creepers for XP without them exploding?

Hit the Bulls Eye with T in the Center

Why tighten down in a criss-cross pattern?

Is "Busen" just the area between the breasts?

How does DC work with natural 20?

How would modern naval warfare have to have developed differently for battleships to still be relevant in the 21st century?

Android Material and appcompat Manifest merger failed in react-native or ExpoKit

Is there a term for the belief that "if it's legal, it's moral"?

Can I enter the UK for 24 hours from a Schengen area, holding an Indian passport?

What is the oldest commercial MS-DOS program that can run on modern versions of Windows without third-party software?

Is there any difference between Т34ВМ1 and КМ1858ВМ1/3?

What is the highest voltage from the power supply a Raspberry Pi 3 B can handle without getting damaged?

Helping ease my back pain by studying 13 hours everyday , even weekends

Too early in the morning to have SODA?

What are the pros and cons for the two possible "gear directions" when parking the car on a hill?

"Permanent resident of UK” for a British travel insurance in the US

Improve appearance of the table in Latex

Understanding the reasoning of the woman who agreed with Shlomo to "cut the baby in half"

Creating a histogram using custom data

How did Gollum enter Moria?



Can I set the “Difference push receive setting in firebase?”


Does Android support near real time push notification?Why is the Android emulator so slow? How can we speed up the Android emulator?What is the difference between “px”, “dip”, “dp” and “sp”?Will iOS launch my app into the background if it was force-quit by the user?Does firebase handle push notifications?No notification sound when sending notification from firebase in androidHow to send push notification from Firebase using google apps script?how to trigger push notifications of firebase from an ios device using swift3Firebase Push Notifications not received if app is closedfirebase cloud messaging Android push notification not working






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








1















I am now trying to make a mobile app push notification service on Firebase. But the function description is not quite specific as I expected.



I want to know these functions are available on Firebase. If not, It would be pleasure If you tell me other tool.



  1. User can select the push message types they want to receive.(Ex. Receive sale information push, Do not receive game event push)


  2. Instantly send auto push messages when user triggered certain condition.(Ex. Send appreciate push message when user closed their first app-open)


Thank you










share|improve this question
























  • you can manage this types of condition from back-end . if receivesale is on then send push to user , otherwise don't

    – Tejas Pandya
    Mar 25 at 7:46

















1















I am now trying to make a mobile app push notification service on Firebase. But the function description is not quite specific as I expected.



I want to know these functions are available on Firebase. If not, It would be pleasure If you tell me other tool.



  1. User can select the push message types they want to receive.(Ex. Receive sale information push, Do not receive game event push)


  2. Instantly send auto push messages when user triggered certain condition.(Ex. Send appreciate push message when user closed their first app-open)


Thank you










share|improve this question
























  • you can manage this types of condition from back-end . if receivesale is on then send push to user , otherwise don't

    – Tejas Pandya
    Mar 25 at 7:46













1












1








1








I am now trying to make a mobile app push notification service on Firebase. But the function description is not quite specific as I expected.



I want to know these functions are available on Firebase. If not, It would be pleasure If you tell me other tool.



  1. User can select the push message types they want to receive.(Ex. Receive sale information push, Do not receive game event push)


  2. Instantly send auto push messages when user triggered certain condition.(Ex. Send appreciate push message when user closed their first app-open)


Thank you










share|improve this question
















I am now trying to make a mobile app push notification service on Firebase. But the function description is not quite specific as I expected.



I want to know these functions are available on Firebase. If not, It would be pleasure If you tell me other tool.



  1. User can select the push message types they want to receive.(Ex. Receive sale information push, Do not receive game event push)


  2. Instantly send auto push messages when user triggered certain condition.(Ex. Send appreciate push message when user closed their first app-open)


Thank you







android ios firebase push-notification firebase-cloud-messaging






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 25 at 7:44









Dr Mido

886631




886631










asked Mar 25 at 7:36









Faud HwangFaud Hwang

84




84












  • you can manage this types of condition from back-end . if receivesale is on then send push to user , otherwise don't

    – Tejas Pandya
    Mar 25 at 7:46

















  • you can manage this types of condition from back-end . if receivesale is on then send push to user , otherwise don't

    – Tejas Pandya
    Mar 25 at 7:46
















you can manage this types of condition from back-end . if receivesale is on then send push to user , otherwise don't

– Tejas Pandya
Mar 25 at 7:46





you can manage this types of condition from back-end . if receivesale is on then send push to user , otherwise don't

– Tejas Pandya
Mar 25 at 7:46












2 Answers
2






active

oldest

votes


















0














Can not tell in much description here:



1. User can select the push message types they want to receive.(Ex.
Receive sale information push, Do not receive game event push)



You can use FCM's channeling feature,



  • You can set different channels.

  • Show the list of channels to user.

  • User can subscribe to the required channel.

  • User will receive the specific channel notification only.

Please refer : Notification Channel



2. Instantly send auto push messages when user triggered certain condition.(Ex. Send appreciate push message when user closed their first app-open)
You have manage this thing in your front end and backend logic.



Like on app close send request to the backend (can use onDestroy method )server and then the backend server will send notification.



Hope this will help you.






share|improve this answer






























    0














    For Feature 1:



    You can achieve this without even doing anything. Just send all notifications to everyone. However, use different Notification Channels. Users, can then choose to turn on/off certain notification channels using the Android system features (in relatively newer versions of android).



    Another way could be to send these notifications to different FCM Topics. Give the users a settings pages, where there can select what kinds of notifications they would like to receive. In response to their selections, subscribe or unsubscribe them to the respective FCM Topic.



    For Feature 2:



    There could be several hundred ways of doing this. Can provide better advice if you could provide more information about your requirement.



    If you talk about your example requirement




    (Send appreciate push message when user closed their first app-open)




    You can do it without any server, or push messaging scheme. Just keep track of the first_open event inside the app using Shared Preferences. Once you detect a first_open event, just compose a notification inside of the app locally, and show it whenever you like.






    share|improve this answer

























      Your Answer






      StackExchange.ifUsing("editor", function ()
      StackExchange.using("externalEditor", function ()
      StackExchange.using("snippets", function ()
      StackExchange.snippets.init();
      );
      );
      , "code-snippets");

      StackExchange.ready(function()
      var channelOptions =
      tags: "".split(" "),
      id: "1"
      ;
      initTagRenderer("".split(" "), "".split(" "), channelOptions);

      StackExchange.using("externalEditor", function()
      // Have to fire editor after snippets, if snippets enabled
      if (StackExchange.settings.snippets.snippetsEnabled)
      StackExchange.using("snippets", function()
      createEditor();
      );

      else
      createEditor();

      );

      function createEditor()
      StackExchange.prepareEditor(
      heartbeatType: 'answer',
      autoActivateHeartbeat: false,
      convertImagesToLinks: true,
      noModals: true,
      showLowRepImageUploadWarning: true,
      reputationToPostImages: 10,
      bindNavPrevention: true,
      postfix: "",
      imageUploader:
      brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
      contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
      allowUrls: true
      ,
      onDemand: true,
      discardSelector: ".discard-answer"
      ,immediatelyShowMarkdownHelp:true
      );



      );













      draft saved

      draft discarded


















      StackExchange.ready(
      function ()
      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55333109%2fcan-i-set-the-difference-push-receive-setting-in-firebase%23new-answer', 'question_page');

      );

      Post as a guest















      Required, but never shown

























      2 Answers
      2






      active

      oldest

      votes








      2 Answers
      2






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      0














      Can not tell in much description here:



      1. User can select the push message types they want to receive.(Ex.
      Receive sale information push, Do not receive game event push)



      You can use FCM's channeling feature,



      • You can set different channels.

      • Show the list of channels to user.

      • User can subscribe to the required channel.

      • User will receive the specific channel notification only.

      Please refer : Notification Channel



      2. Instantly send auto push messages when user triggered certain condition.(Ex. Send appreciate push message when user closed their first app-open)
      You have manage this thing in your front end and backend logic.



      Like on app close send request to the backend (can use onDestroy method )server and then the backend server will send notification.



      Hope this will help you.






      share|improve this answer



























        0














        Can not tell in much description here:



        1. User can select the push message types they want to receive.(Ex.
        Receive sale information push, Do not receive game event push)



        You can use FCM's channeling feature,



        • You can set different channels.

        • Show the list of channels to user.

        • User can subscribe to the required channel.

        • User will receive the specific channel notification only.

        Please refer : Notification Channel



        2. Instantly send auto push messages when user triggered certain condition.(Ex. Send appreciate push message when user closed their first app-open)
        You have manage this thing in your front end and backend logic.



        Like on app close send request to the backend (can use onDestroy method )server and then the backend server will send notification.



        Hope this will help you.






        share|improve this answer

























          0












          0








          0







          Can not tell in much description here:



          1. User can select the push message types they want to receive.(Ex.
          Receive sale information push, Do not receive game event push)



          You can use FCM's channeling feature,



          • You can set different channels.

          • Show the list of channels to user.

          • User can subscribe to the required channel.

          • User will receive the specific channel notification only.

          Please refer : Notification Channel



          2. Instantly send auto push messages when user triggered certain condition.(Ex. Send appreciate push message when user closed their first app-open)
          You have manage this thing in your front end and backend logic.



          Like on app close send request to the backend (can use onDestroy method )server and then the backend server will send notification.



          Hope this will help you.






          share|improve this answer













          Can not tell in much description here:



          1. User can select the push message types they want to receive.(Ex.
          Receive sale information push, Do not receive game event push)



          You can use FCM's channeling feature,



          • You can set different channels.

          • Show the list of channels to user.

          • User can subscribe to the required channel.

          • User will receive the specific channel notification only.

          Please refer : Notification Channel



          2. Instantly send auto push messages when user triggered certain condition.(Ex. Send appreciate push message when user closed their first app-open)
          You have manage this thing in your front end and backend logic.



          Like on app close send request to the backend (can use onDestroy method )server and then the backend server will send notification.



          Hope this will help you.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Mar 25 at 7:55









          Cool7Cool7

          1,37811225




          1,37811225























              0














              For Feature 1:



              You can achieve this without even doing anything. Just send all notifications to everyone. However, use different Notification Channels. Users, can then choose to turn on/off certain notification channels using the Android system features (in relatively newer versions of android).



              Another way could be to send these notifications to different FCM Topics. Give the users a settings pages, where there can select what kinds of notifications they would like to receive. In response to their selections, subscribe or unsubscribe them to the respective FCM Topic.



              For Feature 2:



              There could be several hundred ways of doing this. Can provide better advice if you could provide more information about your requirement.



              If you talk about your example requirement




              (Send appreciate push message when user closed their first app-open)




              You can do it without any server, or push messaging scheme. Just keep track of the first_open event inside the app using Shared Preferences. Once you detect a first_open event, just compose a notification inside of the app locally, and show it whenever you like.






              share|improve this answer





























                0














                For Feature 1:



                You can achieve this without even doing anything. Just send all notifications to everyone. However, use different Notification Channels. Users, can then choose to turn on/off certain notification channels using the Android system features (in relatively newer versions of android).



                Another way could be to send these notifications to different FCM Topics. Give the users a settings pages, where there can select what kinds of notifications they would like to receive. In response to their selections, subscribe or unsubscribe them to the respective FCM Topic.



                For Feature 2:



                There could be several hundred ways of doing this. Can provide better advice if you could provide more information about your requirement.



                If you talk about your example requirement




                (Send appreciate push message when user closed their first app-open)




                You can do it without any server, or push messaging scheme. Just keep track of the first_open event inside the app using Shared Preferences. Once you detect a first_open event, just compose a notification inside of the app locally, and show it whenever you like.






                share|improve this answer



























                  0












                  0








                  0







                  For Feature 1:



                  You can achieve this without even doing anything. Just send all notifications to everyone. However, use different Notification Channels. Users, can then choose to turn on/off certain notification channels using the Android system features (in relatively newer versions of android).



                  Another way could be to send these notifications to different FCM Topics. Give the users a settings pages, where there can select what kinds of notifications they would like to receive. In response to their selections, subscribe or unsubscribe them to the respective FCM Topic.



                  For Feature 2:



                  There could be several hundred ways of doing this. Can provide better advice if you could provide more information about your requirement.



                  If you talk about your example requirement




                  (Send appreciate push message when user closed their first app-open)




                  You can do it without any server, or push messaging scheme. Just keep track of the first_open event inside the app using Shared Preferences. Once you detect a first_open event, just compose a notification inside of the app locally, and show it whenever you like.






                  share|improve this answer















                  For Feature 1:



                  You can achieve this without even doing anything. Just send all notifications to everyone. However, use different Notification Channels. Users, can then choose to turn on/off certain notification channels using the Android system features (in relatively newer versions of android).



                  Another way could be to send these notifications to different FCM Topics. Give the users a settings pages, where there can select what kinds of notifications they would like to receive. In response to their selections, subscribe or unsubscribe them to the respective FCM Topic.



                  For Feature 2:



                  There could be several hundred ways of doing this. Can provide better advice if you could provide more information about your requirement.



                  If you talk about your example requirement




                  (Send appreciate push message when user closed their first app-open)




                  You can do it without any server, or push messaging scheme. Just keep track of the first_open event inside the app using Shared Preferences. Once you detect a first_open event, just compose a notification inside of the app locally, and show it whenever you like.







                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited Mar 25 at 8:02

























                  answered Mar 25 at 7:56









                  Abdul WasaeAbdul Wasae

                  2,51512043




                  2,51512043



























                      draft saved

                      draft discarded
















































                      Thanks for contributing an answer to Stack Overflow!


                      • Please be sure to answer the question. Provide details and share your research!

                      But avoid


                      • Asking for help, clarification, or responding to other answers.

                      • Making statements based on opinion; back them up with references or personal experience.

                      To learn more, see our tips on writing great answers.




                      draft saved


                      draft discarded














                      StackExchange.ready(
                      function ()
                      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55333109%2fcan-i-set-the-difference-push-receive-setting-in-firebase%23new-answer', 'question_page');

                      );

                      Post as a guest















                      Required, but never shown





















































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown

































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown







                      Popular posts from this blog

                      Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

                      Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

                      Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript