thiagolocatelli / parse4j

Java Library to deal with Parse (parse.com) REST API
http://thiagolocatelli.github.io/parse4j
143 stars 117 forks source link

When Push notification functionality will be implemented #51

Open karunakaranvrv opened 8 years ago

karunakaranvrv commented 8 years ago

@thiagolocatelli

I have need of push notification for parse

Let me know how much time it will take to be implemented ?

https://github.com/thiagolocatelli/parse4j#PushNotifications

vervetester commented 8 years ago

@thiagolocatelli

We are very interested in this as well. Please advise. Thanks!

dparish commented 8 years ago

I was testing this and push works already:

        Parse.initialize(appProperties.getParseApplicationId(), appProperties.getParseRestApiKey());
        ParsePush push = new ParsePush();
        push.setMessage("sent from the server");
        push.setChannel("someChannel");
        push.send();

This appears to work just fine. What does not appear to be working is pushing to a query.