2015-11-10 39 views

回答

0

謝謝您的回答,

此代碼的工作對我來說:

FB.login(function(response) { 
    if (response.authResponse) { 
     FB.api('/me/photos','post', 
     { 
      message: 'Message', 
      display: 'iframe', 
      url: 'https://sample.jpg' 
     }, 
     function(response) {} 
     ); 
    } 
}, {scope: 'publish_actions'}); 

也是我用FB.ui(),還與圖像(僅圖像共享頁面,而不將圖片添加到Facebook相冊):

FB.ui({ 
    method: 'share', 
    display: 'popup', 
    href: 'page.url', 
    picture: 'https://sample.jpg' 
}, function(response){}); 

但現在的問題是在共享gif動畫,如果我只使用GIF爲「URL」(在第一個例子)「圖片」(在S或第二個例子),我只在facebook上看到圖像,但我需要ANIMATEd gif。 我可以使用此代碼:

FB.ui({ 
    method: 'share', 
    display: 'popup', 
    href: 'animated.gif', 
}, function(response){}); 

但在這種情況下,我看到在Facebook上源鏈接,它的問題對我來說,因爲源圖像將被刪除。

相關問題