Need help regarding social sharing functionality.
When any customer share/tweet any product information to his/her account from website then i need tweet id to check successful post.
So i need to track tweet is successfully posted on customer’s account or not ? If successfully posted then alert tweet id and if not then alert error message.
I am trying to do this with below events but its not working.
twttr.events.bind(
'like',
function(event) {
var likedTweetId = event.data.tweet_id;
}
);
So is there any way to track tweet that is successfully posted in customer’s account ?
Thanks