Como corrigir o erro 411 Length Necessário com file_get_contents e a expedia XML API? [fechadas
Estou fazendo a reserva de hotel on-line usando o projeto xml api (php). Quando estou trabalhando no código de reserva, ele mostra um erro do seguinte
"Warning: file_get_contents(https://[email protected]</email><firstName>test</firstName><lastName>smith</lastName><homePhone>8870606867</homePhone><creditCardType>CA</creditCardType><creditCardNumber>5401999999999999</creditCardNumber>....</HotelRoomReservationRequest>) [function.file-get-contents]: failed to open stream: HTTP request failed! HTTP/1.0 411 Length Required"
meu código
$context = stream_context_create(
array(
'http' => array(
'method' => 'POST',
'header' => "Content-type: application/x-www-form-urlencoded",
"Accept: application/xml"
)
)
);
$url ='https://book.api.ean.com/....';
$xml = file_get_contents($url, false, $context);
É para enviar informações de crédito por favor, dê-me uma sugestão de que tipo de erro .