Hi,
I am writing custom code to my webpage by going through the tracking tools & analytics section of the dashboard to create a share to facebook button.
I am able to do this with standard information, but is there a way to customise this information with information from the webpage (the user).
Here is a snippet of the custom code being used
<html>
<head>
<title>Your Website Title</title>
<!-- You can use Open Graph tags to customize link previews.
Learn more: https://developers.facebook.com/docs/sharing/webmasters -->
<meta property="og:url" content="https://www.your-domain.com/your-page.html" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Your Website Title" />
<meta property="og:description" content="Your description" />
<meta property="og:image" content="https://www.your-domain.com/path/image.jpg" />
</head>
<body>
//...
So I’m looking to maybe change the description so that it contains information retrieved from the webpage that the user has generated, rather than just a standard description that is not unique to the user.
Hope this makes sense.
Thanks