我们注意到我们的 iOS 应用正在向 http://app-measurement.com 发送请求.正文似乎被加密或压缩了
:method: POST
:scheme: https
:path: /a
:authority: app-measurement.com
accept: */*
content-type: application/x-www-form-urlencoded
content-encoding: gzip
accept-language: en-gb
content-length: 371
accept-encoding: br, gzip, deflate
;
_uwa
_pfoq
_oauto
_r
_c_fݶ-
...
我已经检查过它是否是 gzip,但似乎不是。
有谁知道如何解密才能看到请求内容?
Best Answer-推荐答案 strong>
firebaser 在这里
此请求是 Google Analytics for Firebase 的一部分,用于报告来自客户端的分析事件。它被高度压缩以最大程度地减少带宽使用。
没有公共(public) API 可以查看请求的原始内容,但您可以在此处找到有关收集的数据的更多信息:
- 关于 auto-collected events 的文档和 auto collected user properties .
- BigQuery schema很好地代表了我们收集的内容(尽管在某些情况下,这还包括一些添加到服务器上的字段,例如位置信息和流量来源)。
- 设备日志(例如 logcat)公开我们记录的事件/参数。
关于ios - 如何解密对 app-measurement.com 的 Firebase 请求,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/54461349/
|