gpt4 book ai didi

javascript - 分享来自 Facebook FanPage 的帖子吗?

转载 作者:行者123 更新时间:2023-11-28 15:43:48 25 4
gpt4 key购买 nike

创建了一个 Facebook 应用程序和一个用于呈现我的网站的粉丝页面选项卡。

如何使用 facebook API 在用户墙上创建并分享帖子。

提前致谢。

最佳答案

您可以简单地使用 /me/feed -

window.fbAsyncInit = function() 
{
FB.init({
appId : '{app-id}',
status : true,
cookie : true,
xfbml : true
});

FB.login(function(response){
if (response.authResponse) {
Share();
} else {
// The person cancelled the login dialog
}
},{scope: 'publish_actions'});

};

// Load the SDK asynchronously
(function(d){
var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js";
ref.parentNode.insertBefore(js, ref);
}(document));

function Share(){
FB.api(
"/me/feed",
"POST",
{
"object": {
"message": "This is a test message",
"link": "{link}",
"description": "{description}"
}
},
function (response) {
if (response && !response.error) {
// success
}
}
);
}

所需权限:publish_actions

关于javascript - 分享来自 Facebook FanPage 的帖子吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23015263/

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