钛推特未发表

时间:2011-03-10 14:39:36

标签: twitter oauth publish titanium tweets

我正在尝试使用我的移动应用在Twitter上发布推文。 我通过登录链接到我的应用的推特页面来授权我的帐户。

现在,当我发布它时会发出“未发布”警告。

有谁知道原因?

这是我的代码:

submit.addEventListener('click', function(){
    var oAuthAdapter = new OAuthAdapter('SECRET KEY', 'KEY', 'HMAC-SHA1');

    // load the access token for the service (if previously saved)
    oAuthAdapter.loadAccessToken('twitter');

    oAuthAdapter.loadAccessToken('twitter');

    oAuthAdapter.send('https://api.twitter.com/1/statuses/update.json', [['status', 'Test from appcelerator ' + Math.random()]], 'Twitter', 'Published.', 'Not published.');

    if (oAuthAdapter.isAuthorized() == false) {
        // this function will be called as soon as the application is authorized 
        var receivePin = function(){
            // get the access token with the provided pin/oauth_verifier
            oAuthAdapter.getAccessToken('https://api.twitter.com/oauth/access_token');
            // save the access token
            oAuthAdapter.saveAccessToken('twitter');
        };
        // show the authorization UI and call back the receive PIN function 

        oAuthAdapter.showAuthorizeUI('https://api.twitter.com/oauth/authorize?' +
        oAuthAdapter.getRequestToken('https://api.twitter.com/oauth/request_token'), receivePin);
    }
});

1 个答案:

答案 0 :(得分:0)

这个问题解决了,不知道出了什么问题。

也许我还有一些缓存。