Getting the final destination of a javascript redirect on a website

后端 未结 2 574
悲哀的现实
悲哀的现实 2020-12-20 03:40

I parse a website with python. They use a lot of redirects and they do them by calling javascript functions.

So when I just use urllib to parse the site, it doesn\'t

2条回答
  •  醉梦人生
    2020-12-20 04:03

    It doesnt sound like fun to me, but every javascript function is a is also an object, so you can just read the function rather than call it and perhaps the URL is in it. Otherwise, that function may call another which you would then have to recurse into... Again, doesnt sound like fun, but might be doable.

提交回复
热议问题