duanmin0941 2019-04-18 10:53
浏览 193
已采纳

如何从同一个浏览器收集一个域的相同cookie到另一个域?

I have opened an anonymous website say example.com in a browser. Now I am running a PHP script which runs in another domain say test.com which is owned by me in another Tab from the same browser. How can I get all the cookies which were set in example.com into my test.com PHP script? The objective is to collect all the same cookies that were set in example.com & process those same cookies in my PHP script.

Any advice would be much appreciated?

  • 写回答

1条回答 默认 最新

  • doubaben7394 2019-04-18 10:54
    关注

    You cannot get cookie information from one domain to another. It would be a massive security hole.

    If you absolutely need the values, you will need to add a page to domain1 which reads the cookie and redirects to domain2, passing the cookie values as a query string or form parameter.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?