5
我有了它採用HREF = http://www.facebook.com/dialog/feed HTML錨標記一個FB應用程序顯示...我怎麼了「重新共享」選項在我的應用程序的dialog.feed後
它工作正常。
但是當帖子在Feed中顯示時,它只在其下面有一個'comment'和一個'like'選項。
但是,我看到我的Feed中還有一些其他帖子也有「轉發」選項。
我該怎麼做?
感謝, 香
我有了它採用HREF = http://www.facebook.com/dialog/feed HTML錨標記一個FB應用程序顯示...我怎麼了「重新共享」選項在我的應用程序的dialog.feed後
它工作正常。
但是當帖子在Feed中顯示時,它只在其下面有一個'comment'和一個'like'選項。
但是,我看到我的Feed中還有一些其他帖子也有「轉發」選項。
我該怎麼做?
感謝, 香
我有一個類似的問題;用戶可以將照片發佈到他們自己的(或其他人的牆上),但是隻有類似和評論選項與帖子一起出現。
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>');
任何方向或想法將不受歡迎。
從技術上講,這是另一個問題,試圖建立在更多的細節原件。向任何閱讀它的人道歉,希望得到答案。 – Brian
如果它有所作爲,myapp是一個非畫布的應用程序。 與此同時,我確實找到了一種解決方法,儘管它很笨拙:使用我的URL發佈方法作爲鏈接進行操作。儘管如此,redirect_uri使這個有點麻煩。 – Brian