Parse.com Push not working on Windows Phone 8.1

We use Parse for push notifications on Android and IOS and works great!

I am working on a Windows 8.1 application and cannot make it work. The application is a universal application developed in javascript / html / css.

I used this guide to use dll analysis in a javascript project. https://parse.com/questions/windows-8-javascript-app-push-notifications

  • A new Project Runtime Project Project has been added and a helper class has been added.
  • We downloaded the Parse SDK and added a link to Parse.dll and Parse.WinRT.dll in the project.
  • Link and call a helper method in my new project, when my application starts (in the onactivated event).

     public void InitializeParse(string appId, string key) { ParseClient.Initialize(appId, key); } public void SubscribeToParse() { ParsePush.SubscribeAsync(""); } 
  • Tried both .Net-key and Client key in the above.

  • Activated toast notification for the app.
  • Published application in Windows Phone Store and added keys from there to Parse Push settings.

I see that the phone registers with Parse, because I can choose to use only the Windows segment when clicked.

The number of devices is greater than 0.

The number of clicks sent is always 0.

Any help is appreciated?

  • Do I need to configure anything else in the Windows Phone Store?
  • Should I call methods elsewhere than onactivated events?
  • Should I allow Parse in the Window Phone Store in a different way than providing ClientSecret and SID?
+6
source share

Source: https://habr.com/ru/post/984077/


All Articles