문제

I'm using Pushwoosh to send notification both under Android and iOS.

Now it's possible to send Custom data under the Additional data tab of the Send push web page.

So I put some like this

{"event" : "1234"}

on the Custom data field but I can't get this kind of data on the app.

This is what I get under Android

{
"title":"test 4",
"collapse_key":"do_not_collapse",
"from":"320152062216",
"onStart":true,
"foreground":false,
"p":"f"
}

This is what I get under iOS

{
    aps =     {
        alert = "test 4";
        sound = default;
    };
    p = f;
}

Is there anyone who has managed to make it work?

Thanks.

도움이 되었습니까?

해결책

I think Stack might be not the best place for this, but custom data is available only on Premium accounts.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top