Twitter Tweet or ReTweet Callbacks

后端 未结 3 1055
眼角桃花
眼角桃花 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条回答
  •  猫巷女王i
    2021-01-07 10:11

    They've fixed this with the intents function:

    https://dev.twitter.com/pages/intents-events

    twttr.events.bind('tweet', function(event) {
    // Do something there
    });
    

    or for clicking

    twttr.events.bind('click', function(event) {
    var click_type = event.region;
    });
    

提交回复
热议问题