如何发布/与大照片分享
我已经遵循了一个非常明确的教程,在fb时间线上发布(分享)一个故事。 您可以在FB Share按钮后面的网站上看到我正在使用的代码。 我如何强制照片变大而不是缩略图? 我应该添加到JS代码(FB.ui)? 一种行为? 但是我应该写什么? 我对FB api很新,所以请用简单的英文...谢谢! 保罗
我浏览了你的代码。 您正在使用Feed方式。
FB.ui(
{
method: 'feed',
name: 'Paul Godard – Soul Photography',
link: 'http://www.paulgodard.com/',
picture: 'http://www.gondwanastudio.com/xMedia/Images/Photos/PG_010501-011000/PG_010927.jpg',
source: '',
caption: 'Paul Godard | Soul Photography | Landscape | Nature | Fine Art',
description: 'I am blessed. I have 2 wonderful children Enya and James and my best friend is their mother, my soulmate for many years. I live in a wonderful home in Africa, the wildest continent of the world. I am very privileged and grateful. There is so much beauty around us but people dont see it anymore...',
message: ''
});
尽管如此,尝试使用照片方法如下
FB.api('me/photos', 'post', {
message: 'your message',
status: 'success',
access_token: access_token,
url: 'your_Img_url'
}, function(response) {
});
这里我们正在上传一张照片。 它会被保存在一个新的相册中,因为我们还没有在上面的代码中创建任何代码,并且一张大照片会被贴到墙上。
链接地址: http://www.djcxy.com/p/63735.html