Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在用 C# 编写一个 SEO 工具来进行关键字研究。我需要调用 Google Adword 关键字工具。现在我知道一些工具已经在做同样的事情了。
我只需要破译他们在做什么。我尝试使用 Wireshark,但使用 Wireshark 获取实际的 POST 数据非常复杂。
我尝试在 IE 上使用 fiddler,但似乎发出了太多的 Javascript 请求,这让 fiddler 很困惑。
如果我能找出其他工具提出的确切要求,我认为我的工作已经完成。我怎样才能做到这一点?
放入http.request.method == "POST"wireshark的显示过滤器只显示POST请求。单击数据包,然后展开超文本传输协议字段。POST 数据将在顶部。
http.request.method == "POST"
如果您想获取此类数据,您将不得不使用某种网络嗅探器,并且您可能会遇到与您现在使用的问题相同的问题(从整体网络流量中提取相关数据)线鲨。