6

I am wondering how to send a parse push notification directly from my android app to evryone else using my app. Is it possible to do this?

2

2 Answers 2

13

If you want to use Parse, Go to parse dashboard and there you will see the settings for push where you will find this client-side push setting.

ParsePush push = new ParsePush();
String message = "Client message" + Integer.toString(i++);
push.setChannel("Channel Name");
push.setMessage(message);
push.sendInBackground();
Sign up to request clarification or add additional context in comments.

1 Comment

can you schedule from within the app?
1

You can send push notification from client side as metioned by @Dmitry

However parse strongly recommend not to use that feature [Security vulnerabilites issues]

Parse developers recommend "Cloud code" to send push notification to other users from your app.

Please read this http://blog.parse.com/learn/engineering/the-dangerous-world-of-client-push/

1 Comment

the link is broken

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.