gpt4 book ai didi

twitter - 钛从我的应用程序中发送推文

转载 作者:行者123 更新时间:2023-12-02 03:40:32 24 4
gpt4 key购买 nike

<分区>

我一直在尝试将社交功能添加到我的应用程序中,最近致力于发送推文,我创建了一个推特应用程序并尝试使用 birdhouse.js。我收到“授权应用程序”弹出窗口,当我单击它时,我被转发到另一个显示“来自 twitter”的 pin 的页面,但没有发送任何推文:(

我的代码如下:

Ti.include('lib/birdhouse.js');

//create your twitter session and post a tweet
function postToTwitter() {
var BH = new BirdHouse({
consumer_key : "*****************",
consumer_secret : "*****************",
});

if (!BH.authorized) {
//call the birdhouse authorize() method
BH.authorize();
} else {
message = 'test test test';
BH.tweet(message, function() {
alertDialog = Ti.UI.createAlertDialog({
message : 'Tweet posted!'
});
alertDialog.show();
});
}
}

var buttonTwitter = Titanium.UI.createButton({
width : 280,
height : 35,
top : 375,
left : 20,
title : 'Send Via Twitter'
});

buttonTwitter.addEventListener('click', function(e) {
postToTwitter();
});

win1 = Ti.UI.createWindow({
height : '480',
width : '100%',
});

win1.add(buttonTwitter);
win1.open();

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com