跟踪推送通知并记录它们
Track push notifications and log them
对于一个项目,我想跟踪一些特定的 iOS/Android 应用程序并将它们的推送记录到我的数据库中。
我精通网络抓取和数据库日志记录,但我不知道如何从 iOS/Android 中提取有关新推送的信息。
best/easiest 这样做的方法是什么?
这是我用来跟踪推送通知的方法:
public class TrackNotification extends NotificationListenerService {
@Override
public void onNotificationRemoved(StatusBarNotification sbn) {
super.onNotificationRemoved(sbn);
//your code stuff
}
@Override
public void onNotificationPosted(StatusBarNotification sbn) {
super.onNotificationPosted(sbn);
//your code stuff
}
}
清单中:
<service android:name=".Test"
android:label="Test"
android:permission="android.permission.BIND_NOTIFICATION_LISTENER_SERVICE">
<intent-filter>
<action android:name="android.service.notification.NotificationListenerService" />
</intent-filter>
</service>
对于一个项目,我想跟踪一些特定的 iOS/Android 应用程序并将它们的推送记录到我的数据库中。
我精通网络抓取和数据库日志记录,但我不知道如何从 iOS/Android 中提取有关新推送的信息。
best/easiest 这样做的方法是什么?
这是我用来跟踪推送通知的方法:
public class TrackNotification extends NotificationListenerService {
@Override
public void onNotificationRemoved(StatusBarNotification sbn) {
super.onNotificationRemoved(sbn);
//your code stuff
}
@Override
public void onNotificationPosted(StatusBarNotification sbn) {
super.onNotificationPosted(sbn);
//your code stuff
}
}
清单中:
<service android:name=".Test"
android:label="Test"
android:permission="android.permission.BIND_NOTIFICATION_LISTENER_SERVICE">
<intent-filter>
<action android:name="android.service.notification.NotificationListenerService" />
</intent-filter>
</service>