hi guys, I want to get custom thumbnail for my link posts on facebook and i've two way to do that
- Facebook Multi Page/Group Post script
- Open Graph Protocol (html page with redirect)
btw there are two things i don't understand:
- why if i use FMPGP custom thumbnail my traffic seems to arrive directly from facebook (when i use Open Graph instead traffic arrives from the site where i uploaded an html file with og tags)
- why using OPG everything works fine except caption (site name) which still remains the original
Thank you in advance!
- Facebook Multi Page/Group Post script
- Open Graph Protocol (html page with redirect)
btw there are two things i don't understand:
- why if i use FMPGP custom thumbnail my traffic seems to arrive directly from facebook (when i use Open Graph instead traffic arrives from the site where i uploaded an html file with og tags)
- why using OPG everything works fine except caption (site name) which still remains the original
<html prefix="og: //ogp.me/ns#">
<head>
<meta property= "og:image" content="CUSTOM_IMAGE.jpg" />
<meta property="og:title" content="CUSTOM LINK TITLE" />
<meta property="og:description" content="CUSTOM LINK DESCRIPTION" />
<meta property="og:site_name" content="CUSTOM SITE NAME" />
<script type="text/javascript">window.location = "LANDING_URL.html";</script>
</head>
</html>
Thank you in advance!