我已经设置了 nginx 用户 ID 模块,以便在对服务器的请求中生成 uid cookie 以进行匿名跟踪,虽然设置 cookie 的一切都按预期进行,但我无法弄清楚应该如何解析这些 cookie(在 Python 中)以进行进一步分析。
根据 nginx 的文档(http://nginx.org/en/docs/http/ngx_http_userid_module.html#userid_service),http_userid_module 完全符合 apache 的 mod_uid 并根据 apache 的 mod_uid 文档(http://www.lexa.ru/ programs/mod-uid-eng.html ) cookie 值实际上包含有价值的数据,例如发出 cookie 的时间戳。
base64 解码部分很简单 :) 想知道这里是否有人可以帮助完成解析这些 cookie 中的数据所需的其余操作?