Monday, 8 May 2017

Node JS - Get all redirected URL list

I want to get list of URL which is redirected from first main url. Let me explain it.

Suppose my initial URL is : http://www.example.com/?p1=123 and its redirect to http://www.example1.com/?c1=123&c2=456 and again its redirecting to http://www.example2.com/?a=452&a2=Name

So what i want is list of all this URL's
http://www.example.com/?p1=123 ==>
http://www.example1.com/?c1=123&c2=456 ==>
http://www.example2.com/?a=452&a2=Name

I've checked for this and done r&d for it and come to know that NODE JS will able to do this kind of things but not getting how can i get this with NODE JS.

So anyone can help me for this, i want to do it in NODE JS.

Thanks in advance..



via jay.jivani

No comments:

Post a Comment