2
To share a piece of content on Facebook I’m using the Facebook SDK API.
These are articles on the site that will now have this sharing feature. I am doing so:
<meta property="og:url" content="{!! URL::to('/social/facebook-page/'.$resenha->id) !!}" />
<meta property="og:type" content="article" />
<meta property="og:site_name" content="Teste Eempresa" />
<meta property="og:title" content="{!! $resenha->concessionaria !!}" />
<meta property="og:description" content="Vejam o que estão falando da concessionária" />
<meta property="og:image" content="{!! URL::to('images/social/facebook/'.$resenha->foto_facebook) !!}" />
But I can’t change the following:
Look what’s underlinized in red.
I believed it was the property og:site_name
. But even changing, it doesn’t change anything.
As it is an article also want to put the name of the author.
Does anyone know how I change it ?
I found out what it is
– Diego Souza