Page 1 of 1

How do you trigger a Push notification based on the goe-location of device?

Posted: Fri Oct 11, 2013 5:56 pm
by Earl Reed

Help need with setting up geo-location push notification... is there a sample code somewhere?


How do you trigger a Push notification based on the goe-location of device?

Posted: Fri Oct 11, 2013 8:36 pm
by maxkatz

Let us know if this helps: https://getsatisfaction.com/apperyio/...


How do you trigger a Push notification based on the goe-location of device?

Posted: Mon Oct 14, 2013 10:15 am
by Kevin Preston

I don't know for sure but I suspect Earl is asking about the ability to geo-target push notifications i.e. send a push only to devices in a specific area. This facility is offered by Pushwoosh for example. Is it something that you are likely to implement?


How do you trigger a Push notification based on the goe-location of device?

Posted: Mon Oct 14, 2013 4:59 pm
by maxkatz

Push based on location is coming in early November.


How do you trigger a Push notification based on the goe-location of device?

Posted: Tue Oct 15, 2013 9:12 am
by Kevin Preston

Good news!
Thanks Max.


How do you trigger a Push notification based on the goe-location of device?

Posted: Fri Sep 05, 2014 8:04 am
by Pierre Martins

Hi All,
I'm new to Appery.io but I'm already very impressed.
Sorry to come back to this old thread but I do have the same the question.

How can trigger push notifications only to devices in a specific area ? (and possibly coupling this with other criteria in the DB or Time frame)

The Sequence action would be:
I do post (as admin) a message to be received only at a given location
User of my app getting in the specified area would receive the push a the moment they get in.

Is it always scheduled for November ?

Will that impact the prototype of the push API ? (like providing location target, distance, timeframe during which the notification will be pushed) or something like that ?


How do you trigger a Push notification based on the goe-location of device?

Posted: Sun Sep 07, 2014 9:27 pm
by Yurii Orishchuk

Hi Pierre,

Unfortunatly you can not send directly push notifications to the chosen location area.

But you can implement this:

  1. Get user position and store it in users collection also you need store here "deviceId".

  2. Implement server script logic to send push to location area. This script should get all users from Users collection. Filter them by goal location. Then send push to devices in these items.

    Here is how to use server code: http://devcenter.appery.io/documentat...

    Regards.


How do you trigger a Push notification based on the goe-location of device?

Posted: Sun Sep 07, 2014 9:51 pm
by Illya Stepanov

Hi Pierre, just to add to what Yuriy said -- you can use query in push notifications view in app builder by geolocation, you can read more about how to add filter here.

And more information and examples of geolocation here.


How do you trigger a Push notification based on the goe-location of device?

Posted: Mon Sep 08, 2014 7:28 am
by Pierre Martins

Hi Yurii and Illya, thanks you for this lightning speed response. I will get into this.