facebook can not read goals from laravel

0

If I create an html document in the root, publish "test.html"

<HTML>  
<HEAD>  
	<meta charset="utf-8">
	<meta content="yes" name="apple-mobile-web-app-capable"/>
	<meta name="viewport" id="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no"/>
	<!-- Open Graph data -->
	<meta property="og:title" content="Perro labrador salva a un venado de morir ahogado (Video)" />
	<meta property="og:type" content="article" />
	<meta property="og:url" content="http://perritosperdidos.org/test.html" />
	<meta property="og:image" content="http://perritosperdidos.org/noticias/1500326913098.jpg" />
	<meta property="og:description" content="El ciervo se está recuperando de algunas garrapatas y una lesión ocular." />
	<meta property="og:site_name" content="perritosperdidos.org" />
	<meta property="article:published_time" content="2013-09-17T05:59:00+01:00" />
	<meta property="article:modified_time" content="2013-09-16T19:08:47+01:00" />
	<meta property="article:section" content="Sección de la web" />
	<meta property="article:tag" content="perros" />
	<meta property="fb:app_id" content="1592837927687015" /> 
	<TITLE>TITULO DE PAGINA</TITLE>  
</HEAD>  
<BODY>  
	<!-- Aqui va todo lo chachi -->  
	<H1>Perro labrador salva a un venado de morir ahogado (Video)</H1>  
	<P><IMG SRC="http://perritosperdidos.org/noticias/1500326913098.jpg" ALIGN="MIDDLE" ALT="EL Gato Felix">
	</p>
	<H3> El ciervo se está recuperando de algunas garrapatas y una lesión ocular. </H3>
</BODY>  
</HTML>  

and when running the facebook test link

shows me no problems. but if I create the same code in a

test.blade.php

changing only by

<meta property="og:url" content="http://perritosperdidos.org/test" />

and I create the route

Route::get('/test', function () {
    return view('test');
});

and running the test in link

Could Not Connect To Server
Check that the webserver is running, and that there are no firewalls blocking Facebook's crawlers.

and it happens to me with all the pages that I use with blade, facebook can not read them :( I have to make some modification or someone who is having a similar problem?

    
asked by Luis Alberto Cárdenas Vargas 26.07.2017 в 18:05
source

0 answers