Titanium Twitter Access令牌错误

时间:2014-07-16 13:25:35

标签: twitter titanium

我在Titanium Appcelerator中开发应用程序。我使用 social.js link与twitter分享了图片。直到昨天它仍然很好用。我不知道在api中有什么更新,我的分享不起作用,我的错误说“无法获取访问令牌”。

mycode的:

var social = require('/ui/common/social_plus');
var twitter = social.create({
consumerSecret : '1bXxxxxxxxxxxxxxxxxT0raQbg2Bhx',
consumerKey : '3xxxxxxxxxxxxxxxffFx'
});

twitter.authorize(function() {
        twitter.shareImage({
            message : 'Share Via ',
            image : pic_loc,
            success : function() {
                alert('tweeted Succesfully!');
            },
            error : function() {
                alert("ERROR Tweeted!");
            }
        });
    });

0 个答案:

没有答案