apache curl

[email protected] (Roman Gelfand)
Newsgroups php.general
Message-ID <CAJbW+rmRg+w02v=SmfH7mNsRUpMfG1kOBMBzpwycExbjCuqWVQ@mail.gmail.com>
I am executing successfully the following code using php line mode and it
returns a stream.  However, when running the same code as part of web page,
it appears that get request never gets executed.  Why?  any help is
appreciated.

        $apikey = '73f1ad78334ea3e8dedfb8f568d8537f';
        $username='auser';
        $dealid=1;
        $apiurl='http://apserveri02:8080/rest/default/qadm/v1/';


        $ch = curl_init();

        $headr = array();
        $headr[] = 'Accept: application/json';
        $headr[] = 'Content-Type: application/json';
        $headr[] = 'Authorization '.$apikey.':1';

        curl_setopt($ch, CURLOPT_HTTPHEADER,$headr);

        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
        curl_setopt($ch, CURLOPT_URL,
$apiurl."Rsnapshot?filter=dealid=$dealid");
        $content = curl_exec($ch);
        echo $content;
        exit;

-- 
Thanks,
R. Gelfand
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.