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.
我希望能够使用 Python 跟踪和跟踪由不同网页设置的重定向和 cookie(有点像 Firefox 的篡改插件)。
因此,如果 website1 重定向到 website2 然后重定向到 website3,我想遵循它并查看每个网站设置的 cookie。我一直在查看 Urllib2,但它会自行重定向,而且我还没有看到跟踪重定向的方法。
对此有详细的教程。在潜入 python和voidspace中。简短的版本是 urllib2 提供处理程序(您可以覆盖)来控制重定向和 cookie。