Twitter Tweet or ReTweet Callbacks

后端 未结 3 1025
眼角桃花
眼角桃花 2021-01-07 09:26

Hope you are having a good time. I am creating a website where when users Tweet a wordpress blog entry then they get points on the websites.

So basically, if a user

3条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-01-07 10:26

    opening tweet intent pop from JS code will send a callback. You need to put your tweet URL in herf of anchor tag

    HTML:

     twitter share
    

    JavaScript:

    $(document).ready(function(){
    
        twttr.events.bind('tweet', function(event) {
            console.log(event);
            // OR
            alert(JSON.stringify(event));
        });
    
    });
    

提交回复
热议问题