我想让用户访问我的网站,将一些消息发布到他们的Twitter帐户。为此,我使用的是Twitter Twitter,一个JS Twitter API Wrapper。但是我无法发布任何状态消息。任何人都可以给我一些指示吗?
代码段:
<html>
<head>
<script type="text/javascript" src="TwitterHelper.js"></script>
// function to post status message to twitter account
function postOnTwitter(shortURL){
var twitterClient;
twitterClient = new TwitterHelper('letsTripp', '******', null, 'twitter');
twitterClient.statuses.update(null, null, null, 'json', 'Testing Trippin', null, null);
}
</head>
答案 0 :(得分:1)
我不知道这个库,但它确实看起来像是在发送用户名和密码。这是基本身份验证,不再适用于Twitter。您现在必须使用OAuth身份验证。我使用PHP Twitter,所以我不知道JS的一个好的OAuth库。你可以看看这里: