我在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!");
}
});
});