gpt4 book ai didi

javascript - 单个墙贴中的更多操作链接

转载 作者:行者123 更新时间:2023-11-29 10:22:44 26 4
gpt4 key购买 nike

是否可以创建包含多个操作链接的墙报?

我的代码仅适用于一个操作链接。带有两个操作链接的墙贴不会发送到 Facebook(没有错误消息)。

var publish = {
method : 'feed',
name : name,
link : link,
picture : picture,
caption : caption,
description : description,
message : message,
actions : [{
name : 'Link 1',
link : 'http://www.example.com'
},{
name : 'Link 2',
link : 'http://www.example2.com'
}]
};

FB.api('/me/feed', 'POST', publish, function(response) {});

最佳答案

我有一个 response from Facebook而且您确实不能添加多个操作链接

添加一个链接的正确代码是:

var publish = {
// ....
actions : {
name : 'Some Action Link!',
link : 'http://www.example.com'
}
};

关于javascript - 单个墙贴中的更多操作链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8275428/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com