0

AndroidでFacebookメッセンジャーを開きます。 (:https://github.com/appcelerator-modules/ti.facebookをここで説明したように): Androidでチタンを使用したFacebookメッセンジャー

は、iOSの上でこれを行うには、単純に次の操作を行う必要があり

var fb = require('facebook'); 
    fb.presentMessengerDialog({ 
     title: "Appcelerator Titanium rocks!", // The title of the link 
     description: "Shared from my Titanium application", // The description of the link 
     link: "https://appcelerator.com", // The link you want to share 
     referal: "ti_app", // The referal to be added as a suffix to your link 
     placeID: "my_id", // The ID for a place to tag with this content 
     to: [] // List of IDs for taggable people to tag with this content 
    }); 

がどのようにAndroidの上でこれを行うのでしょうか?

答えて

2

実際には、ネイティブTi.Facebookモジュールを使用していますが、Android用の方法はありません。

:あなたは、それはデビッドの答えでは チタンSDK 5.4.0から

を開始するだけため&のiOSだ、彼はこれを言うそのコードファイルの最初の行を逃したことは、このリンクTi.Facebookで見ることができます

if (Ti.Platform.osname == "android") { 
    Ti.API.warn("This feature is currently iOS-only."); 
    return; 
} 

しかし、あなたはまだここAndroid Intents in Titanium

説明するようにインテントを使用してAndroid上メッセンジャーダイアログを開くしようとすることができます

Googleで類似の質問を検索することができます&私はあなたがそれらの多くを見つけることを望みます。そのような例が1つあります。FB Messenger Intent

関連する問題