我正在尝试通过 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);
}
});
}