1

Facebookでデータを共有したい(JQuery MobileとPhonegap)の助けを借りて、Android(ネイティブアプリ)を作成しています。これらの方法を教えてください

HTML5:-

<div data-role="content">
       <label for="textarea">Textarea:</label>
       <textarea cols="40" rows="8" name="textarea" id="textarea"></textarea>
    <a href="#page1" data-role="button" data-inline="true" data-theme="b">Share</a>
</div>

このアプリでは、テキストエリアにあるデータを共有したいのですが、ボタンをクリックするとFacebookに表示されるはずです

プラグインを使用せずに私を助けてください、または私たちがしなければならないプラグインを使用して、ステップバイステップのプロセスをどのように行うことができるか教えてください

4

1 に答える 1

1

PhoneGap を介して Facebook でデータを共有する

子ブラウザまたは InAppbrowser プラグインを使用し、次のコードを追加します

function FBConnect()
{
if(window.plugins.childBrowser == null)
{
    ChildBrowser.install();
}
}

$("#share_on_wall").live("click", function(event){
   if(event.handled !== true){

     var fb = FBConnect.install();          
     fb.postFBWall(desc, post_url, vPromotionPicture_url, vTitle);

     event.handled = true;
   }
   return false;
});



FBConnect.prototype.postFBWall = function(message, urlPost, urlPicture, vTitle)
{
    if(urlPicture == undefined)
       urlPicture = "";
      urlPost ="";

     var url = "https://www.facebook.com/dialog/feed?app_id=your_app_id&link="+encodeURIComponent(urlPost)+"&picture="+encodeURIComponent(urlPicture)+"&name="+encodeURIComponent(vTitle)+"&caption=&description="+encodeURIComponent(message)+"&redirect_uri=your_redirect_uri";
      var ref = window.open(url, 'random_string', 'location=no');

      ref.addEventListener('loadstart', function(event) {

       });
      ref.addEventListener('loadstop', function(event) {
       console.log(event.type + ' - ' + event.url);
       var post_id = event.url.split("post_id=")[1];
       var cancel_url = event.url.split("#")[0];
       if(post_id != undefined){
            setTimeout(function() {                   

                ref.close();

            }, 5000);
     }
     if(cancel_url != undefined && cancel_url == your_redirect_uri){
            setTimeout(function() {
                ref.close();                        
            }, 1000);
     }                         
  });
  ref.addEventListener('exit', function(event) {

  });
 }
于 2013-10-01T09:30:24.923 に答える