Reputation: 34497
We just started to use parse cloud platform for our android app for pushing notification to our customers. We are looking to export daily pushed notification from parse.
Is there any way to export data which is shown in push tab on parse dashboard ?
I see there is same thread which were looking same thing but haven't share any solution. (https://parse.com/questions/how-to-export-analytics-push-notifications-sent)
Is there any API or any method to download pushed notification data
Thanks
Upvotes: 2
Views: 216
Reputation: 787
This is an old question but Parse now offers the ability to export your app data in JSON format. Keep in mind Parse will be more or less dead as of January 28th, 2017.
Upvotes: 0
Reputation: 3581
No, but yes.
We ran into a similar issue and decided to build a PushNotifications
class in our Parse database. It tracks the push payload, number of opens, etc. and allows us to export that data for our clients.
It was pretty easy to set up:
numberOfOpens
number field on the objectHope that helps!
Upvotes: 0