English 中文(简体)
Has anyone been able to get TriggerIO to work with parse push notifications?
原标题:
  • 时间:2012-05-07 15:40:07
  •  标签:
  • trigger.io

I m not able to get any push notifications out to my android emulator. I go to the Parse admin console and send out a push, but it shows as no subscribers and nothing ever happens on my emulator.

I was hoping someone could share a bit of code showing how they were able to push out?

I ve set up my client and rest api keys, and am able to send a picture to Parse via the demos I ve followed. But when trying to push back to the client it doesn t work...

Thanks,

最佳回答
问题回答

If you use messagePushed.addListener, you ll be automatically subscribed to the default channel:

forge.event.messagePushed.addListener(function (msg) {
    alert(JSON.stringify(msg));
});

Have you entered your applicationId and clientKey as described here?

Note: it s your client key, not REST key, that you need to enter in that configuration.





相关问题
How to configure iOS application icons in trigger.io?

I am trying to configure the iOS applications icons but adding this to the config.json doesn t work. { "author": "myemail", "config_version": "2", "description": "My Extension ...

How to play background audio in iOS with Trigger.io?

I m attempting to build a streaming audio application with Trigger.io s framework. Seeing that its API currently does not feature any audio-related methods, I tested it with basic HTML5 audio tags. ...

Screencast of native Trigger.io features?

I need to build a mobile application for a client. I ve been looking at solutions like Trigger.io to simplify the task for me. I ve read through the documentation but I haven t found any examples of ...

热门标签