Share Facebook Content

2

To share content on Facebook I'm using the Facebook SDK API.

Articles on the site will now have this sharing feature. I'm doing this:

<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'm not able to change the following:

See what's underlined in red.

I thought it was the og:site_name property. But even altering, it does not change anything.

As an article I also want to put the author's name.

Does anyone know how I can change this?

    
asked by anonymous 14.03.2016 / 15:02

1 answer

2

Just add this tag:

<meta property="article:author" content="https://www.facebook.com/seu-perfil-facebook" />

But the value of content should be a Facebook profile.

    
17.03.2016 / 13:36