I want to send push notification from one android device to another using my application by Parse.com.

GulZaib Amjed

I want to make an app where one user can ask for help and all other using this app will get that notification. I am using Parse.com for this as server. i am totally new to this please help me.I got registered my device by key etc. now i can send push notification from parse.com to my device.

but don't know how to make this on my device to send this to other devices?

Aakash

You can create subscribe devices to different unique channel names, then you can send notification containing required payload to the device using the channel to which other device is subscribed.

//subscribing to channel

ParsePush.subscribeInBackground("Channel_Name"); 

//getting installed devices
ParseQuery pushQuery = ParseInstallation.getQuery();
//query for getting devices with channel name
pushQuery.whereEqualTo("channels", "Channel_Name"); 

ParsePush push = new ParsePush();
push.setQuery(pushQuery);
push.setMessage("Your message payload");
push.sendInBackground();

You can subscribe multiple devices to same channel, but in this case when notification is send , it will be sent to all devices subscribed to a particular channel.

For more info: https://parse.com/docs/android/guide#push-notifications

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Send push notification from one Android device to other Using GCM

From Dev

Push Notification from one android device to another

From Dev

Send push notification by using Parse from laravel web server to android device

From Dev

how to send push notification to a specific device without creating channels using parse.com?

From Dev

I want to send push notification in quickblox catting application

From Dev

Should I stop send push notification when another device foreground?

From Dev

Push notification not sending from my device only - Parse

From Dev

Parse.com : Sending Push notification from device?

From Dev

send push notification with parse to single device

From Dev

send push notification with parse to single device

From Dev

How to send push notification from web to iOS and android device using AWS SNS in Laravel 5.1?

From Dev

How to send push notification from web to iOS and android device using AWS SNS in Laravel 5.1?

From Dev

want to send User to User notification using parse for android devices

From Dev

Sending a Push Notification from one user to another user with Parse?

From Dev

Android Parse Push notification device registration only one time on one device

From Dev

I cannot receive push notification on my vritual device android

From Dev

Android Parse Push Notification not working - "Outdated device"

From Dev

I am using Firebase in Chat Application when I send Message to my friend I am sending Push notification

From Dev

Custom Push Notification coming twice using Parse.com and Android

From Dev

Android, Push notification using parse.com, launches the app automatically

From Dev

Custom Push Notification coming twice using Parse.com and Android

From Dev

how to send push notification using phonegap and parse

From Dev

Send push notification to specific user using Parse

From Dev

Is it possible to SEND a parse push notification from a the simulator?

From Dev

Parse: send push notification from own server

From Dev

Using GoogleApiClient from Push Notification IntentService to Send Data to Android Wear

From Dev

send notification to specific android device by my website

From Dev

How to send push notification to an android device before an application is opened means none of the activity is launched even once?

From Dev

Error ~ parse.com push notification android?

Related Related

  1. 1

    Send push notification from one Android device to other Using GCM

  2. 2

    Push Notification from one android device to another

  3. 3

    Send push notification by using Parse from laravel web server to android device

  4. 4

    how to send push notification to a specific device without creating channels using parse.com?

  5. 5

    I want to send push notification in quickblox catting application

  6. 6

    Should I stop send push notification when another device foreground?

  7. 7

    Push notification not sending from my device only - Parse

  8. 8

    Parse.com : Sending Push notification from device?

  9. 9

    send push notification with parse to single device

  10. 10

    send push notification with parse to single device

  11. 11

    How to send push notification from web to iOS and android device using AWS SNS in Laravel 5.1?

  12. 12

    How to send push notification from web to iOS and android device using AWS SNS in Laravel 5.1?

  13. 13

    want to send User to User notification using parse for android devices

  14. 14

    Sending a Push Notification from one user to another user with Parse?

  15. 15

    Android Parse Push notification device registration only one time on one device

  16. 16

    I cannot receive push notification on my vritual device android

  17. 17

    Android Parse Push Notification not working - "Outdated device"

  18. 18

    I am using Firebase in Chat Application when I send Message to my friend I am sending Push notification

  19. 19

    Custom Push Notification coming twice using Parse.com and Android

  20. 20

    Android, Push notification using parse.com, launches the app automatically

  21. 21

    Custom Push Notification coming twice using Parse.com and Android

  22. 22

    how to send push notification using phonegap and parse

  23. 23

    Send push notification to specific user using Parse

  24. 24

    Is it possible to SEND a parse push notification from a the simulator?

  25. 25

    Parse: send push notification from own server

  26. 26

    Using GoogleApiClient from Push Notification IntentService to Send Data to Android Wear

  27. 27

    send notification to specific android device by my website

  28. 28

    How to send push notification to an android device before an application is opened means none of the activity is launched even once?

  29. 29

    Error ~ parse.com push notification android?

HotTag

Archive