【发布时间】:2018-12-17 03:01:18
【问题描述】:
我想使用 Twitter Web Intents 来显示“点赞”和“转推”操作的模式窗口。我的代码(根据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>
但我看到的只是“喜欢”链接。没有出现“转推”链接。
我做错了什么?
【问题讨论】: