当他通过我的网站发推文时,我会给用户折扣,但我想确保用户实际发推文,而不仅仅是点击推文按钮。我试过`
twttr.ready(function (twttr) {
twttr.events.bind('tweet', function(event) {
console.log(event);
});
});
但这仅检测到用户单击了推文按钮。
当他通过我的网站发推文时,我会给用户折扣,但我想确保用户实际发推文,而不仅仅是点击推文按钮。我试过`
twttr.ready(function (twttr) {
twttr.events.bind('tweet', function(event) {
console.log(event);
});
});
但这仅检测到用户单击了推文按钮。
好吧,我不明白这个场景,但你可以做很多选择来确保他是否发推文:
如果用户登录 Twitter,那么您可以使用 twitter api 并使用此 api 检查此推文是否已发布:https ://developer.twitter.com/en/docs/tweets/search/api-reference/get-search -推文
让他在(表单)中发布推文的地方发布推文,然后您可以使用此 api 跟踪他是否发推文:https ://developer.twitter.com/en/docs/tweets/post-and-engage/api -reference/post-statuses-update