gpt4 book ai didi

android - 跟踪推送通知并记录它们

转载 作者:行者123 更新时间:2023-11-29 05:09:31 26 4
gpt4 key购买 nike

对于一个项目,我想跟踪一些特定的 iOS/Android 应用程序并将它们的推送记录到我的数据库中。

我在网络抓取和数据库日志方面很熟练,但我不知道如何从 iOS/Android 中提取有关新推送的信息。

最好/最简单的方法是什么?

最佳答案

这是我用来跟踪推送通知的:

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
}

}

在 list 中:

 <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>

关于android - 跟踪推送通知并记录它们,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59815501/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com