我正在使用@anywhere twitter API,我想使用推文框发布推文。我已经完成了以下步骤:
我注册的应用程序和消费者密钥如下。我将回调 URL 留空。
- 我在注册应用程序时设置了回调 URL 为空白
消费者密钥:94zA1u34whtdXz91Kjymgw
<script src="http://platform.twitter.com/anywhere.js?id=94zA1u34whtdXz91Kjymgw&v=1" type="text/javascript"> </script> <script src="http://ajax.aspnetcdn.com/ajax/jquery/jquery-1.5.1.js"> </script>
我正在创建如下推文框,
$(document).ready(function () {
$('#shareonTwitter').click(function (e) {
alert('hello1234567');
twttr.anywhere.config({ callbackURL: "http://localhost:1461/ShareonTwitter.html" });
twttr.anywhere(function (T) {
T("#tbox").tweetBox({
height: 100,
width: 400,
defaultContent: "Hi how r u ?"
});
});
});
});
身份验证技术问题后出现错误。我无法发推文。任何帮助,将不胜感激