我想使用Twitter Web Intents显示操作“ Like”和“ Retweet”的模式窗口。我的代码(根据https://developer.twitter.com/en/docs/twitter-for-websites/web-intents/overview)
<html>
<header>
<title>Twitter</title>
</header>
<body>
<a href="https://twitter.com/intent/retweet?tweet_id=463440424141459456">Retweet</a>
<a href="https://twitter.com/intent/like?tweet_id=463440424141459456">Like</a>
<script type="text/javascript" async src="https://platform.twitter.com/widgets.js"></script>
</body>
</html>
但是我所看到的只是“喜欢”链接。 “转推”链接不会出现。
我在做什么错了?
答案 0 :(得分:0)
好吧,我的回答:原因是针对浏览器的“ AdGuard”扩展。它添加了“注入样式表”。规则之一:
a[href^="https://twitter.com/intent/retweet?tweet_id"]{
display: none !important;
}
对不起,这是我的疏忽。