1

我正在尝试通过 webhook(Maker 服务)将图像发布到 Pinterest 板上,但每次我尝试都会得到成功响应,但在 IFTTT 操作中,我看到Applet 失败:Pinterest 服务出现问题信息。有什么问题?我尝试发布的图像托管在我自己的服务器上。

function pinterest_post(image, description, boards) {
request({
    url: 'https://maker.ifttt.com/trigger/pinterest_post/with/key/*******-***********-*',
    method: 'POST',
    json: {
        "value1": boards,
        "value2": image,
        "value3": description
    }
}, function (error, response) {
    if (error) {
        console.log('Error sending message: ', error);
    } else if (response.body.error) {
        console.log('Error: ', response.body.error);
    } else {
        console.log(response);
    }
});

}

4

1 回答 1

0

您可能无法将多格式数据的图像发送到 pinterest webhook。我自己现在正在尝试弄清楚如何做到这一点。我不相信你能做到,请看这篇文章:我可以在 IFTTT Maker Trigger 中将 json 请求中的图像发布到 URL 吗?

于 2018-04-03T04:35:55.157 回答