How to format the appearance of a link in social networks?

1

I would like to format the posting of a link as it is done with spotfy and other great sites.

Currently only shows the link of the site and would like to leave everything formatted with image + text.

Here is an image that sums up my question.

    
asked by anonymous 20.04.2018 / 16:48

1 answer

0

You can check here all the documentation on this subject: link

The most normal options to use are these:

<meta property="og:title" content="Titulo que deseja" />
<meta property="og:url" content="https://www.exemplo.com/" />
<meta property="og:type" content="website" />
<meta property="og:description" content="Descrição que quer que apareça" />
<meta property="og:image" content="https://www.exemplo.com/images/icon-1024.png" />
    
20.04.2018 / 17:00