反应| Facebook JS API:尝试将多张图片上传到我的页面供稿时出现错误代码100

时间:2019-04-08 17:32:14

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

在第一个功能中,我将多张图片上传到page-id/photos,并收到所有包含这些图片ID的肯定响应。

接下来的部分是我遇到的问题;我现在正在尝试在Facebook页面时间轴上创建包含多张图片的帖子。但是,我收到一个奇怪的错误响应,声称我已经上传了图像。

我什至使用Open Graph Explorer来跟踪their documentation中Facebook的示例,但这只会返回另一个错误

发送图像的功能:

(可以正常工作)

sendFacebookImagePost(page) {
    const attached_media = []
    for(let i = 0; i < this.state.upload_imgsrc.length; i++) {
        let reader = new FileReader();
        reader.onload = (e) => {
            let arrayBuffer = e.target.result;
            let blob = new Blob([arrayBuffer], { type: this.state.upload_imgsrc[i].type });
            let data = new FormData()
            data.append("source", blob)
            data.append("message", this.state.fb_message)
            data.append("no_story", true)
            data.append("published", true)

            axios({
                method: "post",
                url: "https://graph.facebook.com/" + page.id + "/photos?access_token=" + page.accessToken,
                data: data
            })
            .then(response => {
                attached_media.push({media_fbid: response.data.id})
                if (attached_media.length === this.state.upload_imgsrc.length) {
                    this.sendFacebookPost(page, attached_media)
                }
            })
            .catch(error => {
                console.log(error);
            })
        }
        reader.readAsArrayBuffer(this.state.upload_imgsrc[i]);
    }
}

发送帖子的功能:

(这里是发生错误的地方)

sendFacebookPost(page, attached_media) {
    let data = { 
            message: this.state.fb_message, 
            link: this.state.fb_link,
            attached_media: attached_media
            // this is what attached_media returns:
            // [
            //     {media_fbid: response.data.id},
            //     {media_fbid: response.data.id}
            // ]
        }
    axios({
        method: "post",
        url: "https://graph.facebook.com/" + page.id + "/feed?access_token=" + page.accessToken,
        data: data
    })
    .then( () => this.setState({fb_successMessage: "Post successful!", fb_errorMessage: ""}) )
    .catch(error => {
        console.log(error);
    })
}

错误代码

error: {
    code: 100
    error_subcode: 1366051
    error_user_msg: "These photos were already posted."
    error_user_title: "Already Posted"
    fbtrace_id: "Cl9TUTntOZK"
    is_transient: false
    message: "Invalid parameter"
    type: "OAuthException"
}

我在Open Graph Explorer上的尝试

1 个答案:

答案 0 :(得分:0)

问题解决了。
出现问题的部分是我在图片中添加了以下内容:
data.append("published", true)

显然,要在多张照片帖子中使用的图像必须先设置为published: false,然后才能在帖子中使用。否则,Facebook认为此文件已上传。