From 5dd26687ffe7816476aa9daf93c59866e3d8352c Mon Sep 17 00:00:00 2001 From: Younho Park Date: Thu, 20 Jul 2017 18:29:59 +0900 Subject: [PATCH] [Push] fixed push notification example for delayed push Change-Id: I2d0d316bee9f9a19e022ef88a9db63a8e8bb490c Signed-off-by: Younho Park --- org.tizen.guides/html/dotnet/push_server.htm | 2 +- org.tizen.guides/html/native/messaging/push_server_n.htm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/org.tizen.guides/html/dotnet/push_server.htm b/org.tizen.guides/html/dotnet/push_server.htm index 34f3684..30546cd 100644 --- a/org.tizen.guides/html/dotnet/push_server.htm +++ b/org.tizen.guides/html/dotnet/push_server.htm @@ -153,10 +153,10 @@
  • If you have data to send to the application but no need to notify the user, use the action field on the same level as the message field, instead of within the message field, and do not include the message field itself. In this case, the notification is delivered with the best effort.
     {
    +    "action": "backgroundLaunch",
         "messages":
         [{
             /* Other content */
    -        "action": "backgroundLaunch",
             "appData": "{id:asdf&passwd:1234}",
             /* Other content */
         ]}
    diff --git a/org.tizen.guides/html/native/messaging/push_server_n.htm b/org.tizen.guides/html/native/messaging/push_server_n.htm
    index c7465a1..d214b14 100644
    --- a/org.tizen.guides/html/native/messaging/push_server_n.htm
    +++ b/org.tizen.guides/html/native/messaging/push_server_n.htm
    @@ -157,10 +157,10 @@
     
  • If you have data to send to the application but no need to notify the user, use the action field on the same level as the message field, instead of within the message field, and do not include the message field itself. In this case, the notification is delivered with the best effort.
     {
    +    "action": "backgroundLaunch",
         "messages":
         [{
             ...
    -        "action": "backgroundLaunch",
             "appData": "{id:asdf&passwd:1234}",
             ...
         ]}
    -- 
    2.7.4