Hello,
I develop a app for wp8.
When the app is active the notification sent from the App42 portal arrive correctly
Whe the app is not active it appear as notification and when I tap on it will open the application
but I can't read the message.
I the documentation I found:
protected override void OnNavigatedTo(System.Windows.Navigation.NavigationEventArgs e)
{
base.OnNavigatedTo(e);
// If we navigated to this page
// from the MainPage, the DefaultTitle parameter will be "FromMain". If we navigated here
// when the secondary Tile was tapped, the parameter will be "FromTile".
textBlockFrom.Text = "Navigated here from " + this.NavigationContext.QueryString["NavigatedFrom"];
}
But when I use this and when I tap on the message in the notification bar the query string is always empty.
reading on internet I see that the format of notification can contain this values:
wp:text1 (In this fiels I found the message)
wp:text2 (never found )
wp:Param (never found)
In particulari in the wp:Param I read that I can setup the query string for the app.
Can you help me ?
I need to read the notification received whe app is in background or not active.
Best regards
Gabriele Fain