通过图表api从facebook页面发布帖子并将其发布在其他页面上

时间:2018-01-26 00:08:37

标签: facebook-graph-api

有没有办法从网页Feed中获取帖子并将其发布到其他网页上 从Ladbible页面发布帖子并将其发布在我的页面上

1 个答案:

答案 0 :(得分:0)

不确定。执行GET graph.facebook.com/theladbible/feed?fields=id&access_token=ACCESSTOKEN

这会给你一个帖子列表。例如

data: [
{
created_time: "2018-01-26T01:20:00+0000",
message: "This is so heartwarming ❤️ ELLE",
id: "199098633470668_4420027538044402"
},
{
created_time: "2018-01-26T00:45:00+0000",
message: "It was the Twitter equivalent of a Rock Bottom and the 
People's Elbow ",
id: "199098633470668_4420692437977912"
}]

您将看到pageid_postid形式的ID字段。你只想要帖子ID,所以修剪页面id_只剩下postid。

然后执行POST

graph.facebook.com/yourpageid/feed?link=https://www.facebook.com/ladbible/posts/POSTID&access_token=PAGEACCESSTOKEN

这将导致您将该信息从“可信”分享到您的信息页。