我有一个使用 Facebook Feed and Share 对话框的页面。我在此文档页面上读到,有一种方法可以将更大的图像放入新闻提要,而不是典型的缩略图。https://developers.facebook.com/docs/opengraph/howtos/maximizing-distribution-media-content/#images
我不确定我做错了什么,但我的图像从未出现在较大的格式中。它总是很小的缩略图。这是我的代码。不太确定我做错了什么。
起初我认为我的 share.jpg 图像太大(大约为 1900x1200),所以我将其缩小到 Facebook 要求使用的最小规格(1200x630),但最终还是得到了小缩略图。
这是我拥有的 FB.ui 功能..
$(".facebook").bind("click", function(event){
event.preventDefault();
FB.ui({
method: 'feed',
//link: encodeURIComponent(shareURL),
link: shareURL,
caption: 'An example caption',
picture: 'http://www.example.com/beta/share.jpg'
}, function(response){});
});
这是我在页面上的内容<body>
<script>
window.fbAsyncInit = function() {
// init the FB JS SDK
FB.init({
appId : 'XXXXXXXXXXXX', // App ID from the app dashboard
channelUrl : '//www.example.com/beta/channel.html', // Channel file for x-domain comms
status : true, // Check Facebook Login status
xfbml : true // Look for social plugins on the page
});
// Additional initialization code such as adding Event Listeners goes here
};
// Load the SDK asynchronously
(function(d, s, id){
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) {return;}
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/all.js";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>