Re: How to pass set-cookie header to browser

[email protected]
Newsgroups gmane.comp.web.curl.php
Message-ID <[email protected]>
> there's no way you can send cookies that appear to originate from
Clickbank to a client due to security reasons.


Thought it was a security issue...Is there any other way I can do the
cookie stuffing part, and redirect to the final altered url?

I've got the following code written in CGI\Perl which seems to do that..

sub GetLink {
        $nurl=shift;
        $id=shift;
        $ua = new LWP::UserAgent;
        $ua->agent("Mozilla/4.0");
        $req = new HTTP::Request 'GET' => $nurl;
        $req->header('Accept' => 'text/html');   Accept: text/html
        $res = $ua->request($req);
        if ($res->is_success) {
                $content=$res->headers_as_string.$res->content;
                $real_url=$res->base;
                $content=~/URL=([^\s]+)/;
                $newurl=$1;
                $real_url=~s/\?.*$//;
        } else {
                $real_url=$url;
        }

}

Any way to replicate in curl\php?

Thanks,


_______________________________________________
http://cool.haxx.se/cgi-bin/mailman/listinfo/curl-and-php
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.