Tengo problemas para llamar a una URL desde el código PHP. Necesito llamar a un servicio usando una cadena de consulta de mi código PHP. Si escribo la URL en un navegador, funciona bien, pero si uso file-get-contents () para realizar la llamada, obtengo:
Advertencia: file-get-contents (http: // ....) no pudo abrir la secuencia: ¡la solicitud HTTP falló! HTTP / 1.1 202 Aceptado en ...
El código que estoy usando es:
$query=file_get_contents('http://###.##.##.##/mp/get?mpsrc=http://mybucket.s3.amazonaws.com/11111.mpg&mpaction=convert format=flv');
echo($query);
Como dije, llame desde el navegador y funciona bien. ¿Alguna sugerencia?
También probé con otra URL como:
$query=file_get_contents('http://www.youtube.com/watch?v=XiFrfeJ8dKM');
Esto funciona bien ... ¿podría ser que la URL a la que necesito llamar tenga un segundo http://
?
php
api
query-string
file-get-contents
indefinido
fuente
fuente
CURLOPT_USERAGENT
fue muy importante en mi caso, ¡gracias!¿Podría ser este tu problema?
fuente
urlencode()
en los parámetros GET resolvió el problema.<?php $lurl=get_fcontent("http://ip2.cc/?api=cname&ip=84.228.229.81"); echo"cid:".$lurl[0]."<BR>"; function get_fcontent( $url, $javascript_loop = 0, $timeout = 5 ) { $url = str_replace( "&", "&", urldecode(trim($url)) ); $cookie = tempnam ("/tmp", "CURLCOOKIE"); $ch = curl_init(); curl_setopt( $ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 5.1; rv:1.7.3) Gecko/20041001 Firefox/0.10.1" ); curl_setopt( $ch, CURLOPT_URL, $url ); curl_setopt( $ch, CURLOPT_COOKIEJAR, $cookie ); curl_setopt( $ch, CURLOPT_FOLLOWLOCATION, true ); curl_setopt( $ch, CURLOPT_ENCODING, "" ); curl_setopt( $ch, CURLOPT_RETURNTRANSFER, true ); curl_setopt( $ch, CURLOPT_AUTOREFERER, true ); curl_setopt( $ch, CURLOPT_SSL_VERIFYPEER, false ); # required for https urls curl_setopt( $ch, CURLOPT_CONNECTTIMEOUT, $timeout ); curl_setopt( $ch, CURLOPT_TIMEOUT, $timeout ); curl_setopt( $ch, CURLOPT_MAXREDIRS, 10 ); $content = curl_exec( $ch ); $response = curl_getinfo( $ch ); curl_close ( $ch ); if ($response['http_code'] == 301 || $response['http_code'] == 302) { ini_set("user_agent", "Mozilla/5.0 (Windows; U; Windows NT 5.1; rv:1.7.3) Gecko/20041001 Firefox/0.10.1"); if ( $headers = get_headers($response['url']) ) { foreach( $headers as $value ) { if ( substr( strtolower($value), 0, 9 ) == "location:" ) return get_url( trim( substr( $value, 9, strlen($value) ) ) ); } } } if ( ( preg_match("/>[[:space:]]+window\.location\.replace\('(.*)'\)/i", $content, $value) || preg_match("/>[[:space:]]+window\.location\=\"(.*)\"/i", $content, $value) ) && $javascript_loop < 5) { return get_url( $value[1], $javascript_loop+1 ); } else { return array( $content, $response ); } } ?>
fuente
get_url
debería ser,get_fcontent
ya que cambiaste el nombre de la función. En realidad, esta es una llamada de función recursiva que vuelve a intentar obtener el contenido de la URL cambiando algunos parámetros.file_get_contents()
utiliza losfopen()
envoltorios, por lo que no puede acceder a las URL a través de laallow_url_fopen
opción dentro de php.ini.Deberá modificar su php.ini para activar esta opción o utilizar un método alternativo, a saber, cURL , con mucho la forma más popular y, para ser honesta, estándar de lograr lo que está tratando de hacer.
fuente
file_get_contents()
trabajaba en una URL diferente. No obstante, este sigue siendo un buen consejo para otras personas que tienen este problema.Básicamente, debe enviar cierta información con la solicitud.
Prueba esto,
$opts = array('http'=>array('header' => "User-Agent:MyAgent/1.0\r\n")); //Basically adding headers to the request $context = stream_context_create($opts); $html = file_get_contents($url,false,$context); $html = htmlspecialchars($html);
Esto funcionó para mi
fuente
Noto que su URL tiene espacios. Creo que eso suele ser algo malo. Intente codificar la URL con
$my_url = urlencode("my url");
y luego llamando
y mira si tienes mejor suerte.
fuente
Tuve un problema similar, analicé la URL de YouTube. El código es;
$json_is = "http://gdata.youtube.com/feeds/api/videos?q=".$this->video_url."&max-results=1&alt=json"; $video_info = json_decode ( file_get_contents ( $json_is ), true ); $video_title = is_array ( $video_info ) ? $video_info ['feed'] ['entry'] [0] ['title'] ['$t'] : '';
Entonces me doy cuenta de que
$this->video_url
incluyen los espacios en blanco. Resolví eso usandotrim($this->video_url)
.Quizás te ayude. Buena suerte
fuente
No estoy seguro de los parámetros (mpaction, formato), si se especifican para la página de amazonaws o ##. ##.
Intente codificar urlen () la URL.
fuente
$query=file_get_contents('http://###.##.##.##/mp/get?' . http_build_query(array('mpsrc' => 'http://mybucket.s3.amazonaws.com/11111.mpg&mpaction=convert format=flv')));
fuente
Tengo un problema similar.
¡Debido al tiempo de espera!
El tiempo de espera se puede indicar así:
$options = array( 'http' => array( 'header' => "Content-type: application/x-www-form-urlencoded\r\n", 'method' => "POST", 'content' => http_build_query($data2), 'timeout' => 30, ), ); $context = stream_context_create($options); $retour = $retour = @file_get_contents("http://xxxxx.xxx/xxxx", false, $context);
fuente
Utilizar esta
file_get_contents($my_url,null,null);
fuente