2
votes

I want to know if it's possible to read/parse the HTTP response header after a POST request in PHP without the use of cURL..

I have PHP 5 under IIS7 The code I use to POST is :-

$url="http://www.google.com/accounts/ClientLogin";
$postdata = http_build_query(
    array(
        'accountType' => 'GOOGLE',
        'Email' => '[email protected]',
        'Passwd' => 'xxxxxx',
        'service' => 'fusiontables',
        'source' => 'fusiontables query'
    )
);
$opts = array('http' =>
    array(
        'header'  => 'Content-type: application/x-www-form-urlencoded',
        'method'  => 'POST',
        'content' => $postdata
    )
);
$context  = stream_context_create($opts);
$result = file_get_contents($url, false, $context);

Above, im doing a simple ClientLogin Authentication to google and I want to get the Auth token which returns in the header. Echo-ing $result only gives the body content and not headers which contains the auth token data.

2
don't think you can have the response headers in your example (file_get_contents will return the response body)Andreas
then what does get_headers() in php5 do? (sinan answered below) Or do you recommend any workaround for getting the auth token from Google ClienLogin using php5?Irfan

2 Answers

1
votes

The function get_headers() may be the one you are looking for.

http://php.net/manual/en/function.get-headers.php

1
votes

Use the ignore_errors context option (documentation):

$opts = array('http' =>
    array(
        'header'  => 'Content-type: application/x-www-form-urlencoded',
        'method'  => 'POST',
        'content' => $postdata,
        'ignore_errors' => true,
    )
);

Also, maybe use fopen rather than file_get_contents. You can then call stream_get_meta_data($fp) to get the headers, see Example #2 on the above link.