7

我已经按照一个非常清晰的教程在 fb 时间轴上发布(分享)一个故事。您可以在 FB Share 按钮后面看到我在我的网站上使用的代码。如何强制照片变大而不是缩略图?我应该在 js 代码(FB.ui)中添加什么?一种行为?但是我应该写什么呢?我对 FB api 很陌生,所以请用简单的英语...谢谢!保罗

4

1 回答 1

4

我浏览了你的代码。您正在使用 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) {
                    });

我们在这里上传一张照片。它将被保存在新相册中,因为我们没有在上面的代码中创建任何内容,并且一张大照片将张贴在您的墙上。

于 2013-10-14T10:45:39.467 回答