android - How to export push notification data from Parse -
we started use parse cloud platform our android app pushing notification our customers. looking export daily pushed notification parse.
is there way export data shown in push tab on parse dashboard ?
i see there same thread looking same thing haven't share solution. (https://parse.com/questions/how-to-export-analytics-push-notifications-sent)
is there api or method download pushed notification data
thanks
no, yes.
we ran similar issue , decided build pushnotifications
class in our parse database. tracks push payload, number of opens, etc. , allows export data our clients.
it pretty easy set up:
- create class
- add object every time send push (we use cloud code method sending pushes , added object creation there)
- when user opens push, increment
numberofopens
number field on object
hope helps!
Comments
Post a Comment