I was just wondering is it safe to use to share with the Twitter button with these variables? Can they track my data from the database as I know a little about this share?
<meta property="twitter:card" content="summary">
<meta property="twitter:title" content="Login to webclip or create an account">
<meta property="twitter:description" content="{{ posts.content }}">
<meta property="twitter:image:src" content="{{ posts.image.url }}">
<a href="http://www.twitter.com/share?url={{ request.build_absolute_uri }}">
<button type="button" class="btn btn-outline-dark btn-floating"><i class="fab fa-twitter"></i></button>
</a>
As you see I'm using {{ posts.content }}. Is it possible that they can breach or simply take all the other data from my database, a stupid question I know but still I want to verify it?