我正在尝试插入推文框插件以从网站发布推文。我已按照此处的说明http://winkpress.com/tweet-box-lets-your-visitors-write-and-send-tweets-in-your-site/ 我添加了以下代码,我已经插入了消费者钥匙,
<script src="http://platform.twitter.com/anywhere.js?id=[KEY]&v=1"></script>
和
<div id="tbox"></div>
<script type="text/javascript">
twttr.anywhere(function (T) {
T("#tbox").tweetBox({
height: 100,
width: 275,
label: '<link rel="stylesheet" type="text/css" media="all" href="http://winkpress.com/wp-content/themes/winkpress/tweet-box.css" />Got tips, suggestions or questions?',
defaultContent: "@winkpress "
});
});
我想知道如何实现盒子和推特之间的连接,并设法从推特盒子发帖?