Check if the tweet is complete or the user has closed the popup.

I am working on a web application using AngularJs as front-end and Laravel as back-end

In many views, I have a sharing panel with a tweet button, I managed to add a sharing button using the jitter widget for twitter

twttr.widgets.createShareButton( 'https://dev.twitter.com/', document.getElementById('tw'), { count: 'none', text: 'Sharing a URL using the Tweet Button' }).then(function (el) { console.log("Button created.",el); }); 

as well as I was able to detect the click event on this tab with twitter through

 twttr.events.bind( 'tweet', function (event) { console.log('tweeet',event); } ); 

but this event fires if the user clicked on the twitter button, even if he simply closed the pop-up window and did not tweet.

I found this chain https://twittercommunity.com/t/need-to-check-if-user-tweet-like-retweet-post-successfully-using-js-intent/61432 in the twitter community, but since February 2015 I hope after more than one year!

Is there a way to track a complete successful tweet!

Thanks in advance.

+5
source share

All Articles