in reply to Get URL problem

If it "works with a common browser", you have to look at what data the working browser sends and then replicate that using Perl. Usually it is some header that you are not sending but that the browser is sending and which you need to replicate.

Replies are listed 'Best First'.
Re^2: Get URL problem
by kepler (Scribe) on Nov 03, 2018 at 12:59 UTC

    Hi

    I believe you are right. How can I see and replicate in Perl the headers that are being sent?

      That depends on the browser you use. For Firefox and Google Chrome, it's ctrl+shift+i to open the developer tools.

      For other application, it's usually https://www.wireshark.org/ for me.