我按照本教程进行操作,但我不知道将这段代码放在哪里:
/*
* Check if Twitter is installed
*
*/
isTwitterAvailable(success, failure)
样品用途:
window.plugins.twitter.isTwitterAvailable(
function(bool){
if(bool){
// Do something
} else {
alert("Twitter is not available");
}
},
function(){
alert("We have a problem with the plugin");
}
);
/*
* Compose tweet and open the Twitter application
*/
composeTweet(success, failure, message) {
样品用途:
window.plugins.twitter.composeTweet(
function(){
},
function(){
alert("We have a problem with the plugin");
},
"Base of the tweet"
);
我也跟着这个教程。一切都很好,但是当我在 android 设备中运行项目时,它告诉我“window.plugins.childBrowser 未定义”。我认为问题出在 ChildBrowser 上。我使用的 ChildBrowser 版本是 2.0.0,我用于 2 个教程的 phonegap 版本是 2.2.0。我只想要一个twitter 与Android中的 phonegap 连接
谢谢你的帮助,对不起我的英语不好