Skip to content

集成问题 #28

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
ljchen1129 opened this issue Jan 6, 2024 · 1 comment
Open

集成问题 #28

ljchen1129 opened this issue Jan 6, 2024 · 1 comment

Comments

@ljchen1129
Copy link

  1. readme 文档图片链接失效了
  2. 按照文档集成后,只有原生的 appStart 和 appEnd 事件记录,其他的 flutter 里面页面的浏览事件和元素点击没有记录
  3. 数据传到服务器是加密的,请问如何解密?
    咨询一下?我有买你们的书
@SongWalker
Copy link

SongWalker commented Mar 29, 2024

  1. readme 文档图片链接失效了
  2. 按照文档集成后,只有原生的 appStart 和 appEnd 事件记录,其他的 flutter 里面页面的浏览事件和元素点击没有记录
  3. 数据传到服务器是加密的,请问如何解密?
    咨询一下?我有买你们的书

官方好像在搞商业化,不管开源了,文档也撤了,加密方式看源码是base64编码+gzip压缩;
按以下方式解密就行了,data对象是传输数据的request对象,根据你的项目来获取

 if("1".equals(data.getGzip())) {
         byte[] bytes = Base64.decode(data.getData_list());
         rowDataList = ZipUtil.unGzip(bytes, "UTF-8");
 }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants