2

このチュートリアルに従いましたが、このコードをどこに置くべきかわかりません:

/*
 * 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 です。AndroidでphonegapとのTwitter接続のみが必要です

あなたの助けに感謝し、私の悪い英語で申し訳ありません

4

0 に答える 0