如何在Facebook上发布带有消息的少量图像

时间:2014-10-07 13:25:14

标签: facebook facebook-graph-api facebook-javascript-sdk

我有兴趣在我的网页或我的Feed上创建一个帖子,其中包含我的相册中的一些图片以及一些包含一些消息和一些链接/句柄的文本(对于Facebook好友或页面)

目前我已经尝试制作一张专辑,添加一些图片但我几乎无法控制描述的内容。

    FB.login(function () {
        FB.api("/me/accounts", function (response) {
            FB.api(
                "/usetoken/albums",
                 "POST",
                {
                    "name": "My Album",
                    "message": "Some Message",
                    "access_token": response.data[0].access_token
                },
                function (response) {
                    debugger;
                    if (response && !response.error) {
                        debugger;
                        /* handle the result */
                    }
                }
            );
        });
    }, { scope: 'publish_actions,user_photos,manage_pages' });


function post_image() {
    FB.api(
        "/albumid/photos",
        "POST",
        {
            "url": "imageurl",
            "access_token": access_token
        },
        function (response) {

            if (response && !response.error) {
                debugger;
                /* handle the result */
            }
        }
    );
}

1 个答案:

答案 0 :(得分:0)

如果您确实要发布丰富的内容,则应使用Notes

创建相册时,它将显示为您的网页/个人资料的状态。该状态的状态消息将是专辑描述。所以你可以将你的信息插入到专辑描述中,你应该没问题。