如何从Parse Push通知中记录推送打开

时间:2017-06-09 07:28:27

标签: android ios parse-platform react-native parse-server

我正在使用Parse(解析1.9.2)使用React Native向Android和IOS发送推送通知。但是,即使我单击通知并打开了应用程序,Parse也不会记录此事件。如何使用Parse记录此通知已打开,我该怎么办?当我在Parse仪表板上打开Past Push时,它总是说N/A Notifications Opens。请帮忙

enter image description here

1 个答案:

答案 0 :(得分:2)

您可能应该添加

ParseAnalytics.trackAppOpenedInBackground(intent);

到ParsePushBroadcastReceiver实现中的onPushOpen实现。

请参阅:http://parseplatform.org/Parse-SDK-Android/api/com/parse/ParseAnalytics.html#trackAppOpenedInBackground(android.content.Intent)