I have a Windows App developed with Cordova. I registered it with my Windows Developer Account and got my token etc. Now when I send a push message (toast) via Fiddler to the App, which is currently installed on an Windows Phone 8.1, I receive the Notification on the Phone just fine - but it only says 'New Notification'.
I used this xml for the message:
<?xml version="1.0" encoding="utf-8"?>
<wp:Notification xmlns:wp="WPNotification">
<wp:Toast>
<wp:Text1>Test Message</wp:Text1>
<wp:Text2>XXX</wp:Text2>
</wp:Toast>
</wp:Notification>
However, neither Text1 nor Text2 show up in my notification. How can I implement the toast notification to actually use the content from the push notification?
Since my application is written in Angular JS, I can not use any C# documentations on the topic.
Any help with this problem would be much appreciated. Thanks in advance!