1

我在(JQuery Mobile 和 Phonegap)的帮助下制作了一个 Android(本机应用程序),我想在其中分享 facebook 上的数据,请帮我弄清楚我将如何做这些

在 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>

在这个应用程序中,我想分享 textarea 中的数据,当我点击按钮时应该在 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 回答