2011-09-17 60 views

回答

2

我有一個類似的問題;用戶可以將照片發佈到他們自己的(或其他人的牆上),但是隻有類似和評論選項與帖子一起出現。

FB.init({appId: "xxxxxxxxxxx", status: true, cookie: true}); 

    function fbShare(pic) { 
     event.preventDefault(); 
     //call the API 
     var obj = { 
      method: 'feed', 
      link: 'http://localhost/users/#/gingles/1680/', 
      picture: 'http://c711249.r49.cf2.rackcdn.com/thumbs/1680_19.png', 
      name: 'gingle social transparancy', 
      caption: __video.title, 
      redirect_uri: 'http://www.gingle.tv/close-page', 
      description: 'Watch this video on gingle.tv', 
     }; 

     function callback(response) { 
     console.log(response); 
     } 

     FB.ui(obj, callback); 
    } 

選項後出現就好

但一旦發佈,沒有股權存在 (截圖被過濾掉我的新奇到本網站)

我花很長一段時間通過Facebook的文件傾倒,但我看不到一個解決方案。

爲了讓這個更有趣,當使用URL方法時,我得到了一個分享選項,但照片會丟失。但畢竟我的FB.ui回滾到URL方法的實驗不會共享。

var fbUrl = 'https://www.facebook.com/dialog/feed?app_id=xxxxxxxxxxx&' + 
     'link=http://' + encodeURIComponent(window.location.host + '/users/#/' + __video.username + '/' + __video.id) + '&picture=' + $(this).find('img').attr('src') + 
     '&name=gingle%20|%20social%20transparency&' + 'caption=' + __video.title + 
     '&description=Watch%20this%20ideo%20on%20gingle.tv&' + 
     'redirect_uri=http://www.gingle.tv/close-page'; 

    $('#screenshot_social').html('<a href="' + fbUrl + '" target=_blank>Share on Facebook</a>'); 

任何方向或想法將不受歡迎。

+0

從技術上講,這是另一個問題,試圖建立在更多的細節原件。向任何閱讀它的人道歉,希望得到答案。 – Brian

+0

如果它有所作爲,myapp是一個非畫布的應用程序。 與此同時,我確實找到了一種解決方法,儘管它很笨拙:使用我的URL發佈方法作爲鏈接進行操作。儘管如此,redirect_uri使這個有點麻煩。 – Brian

相關問題