Https://graph.facebook.com/v2.3/238155829716205
我想在开放组中发布一个状态,使用facebook graph api thankyou
进行查询答案 0 :(得分:2)
查看
上的文档电话如下
POST /v2.3/{group-id}/feed
包含相应的字段。
答案 1 :(得分:0)
FB.api(
"/{group-id}/feed",
"POST",
{
"message": "This is a test message"
},
function (response) {
if (response && !response.error) {
/* handle the result */
}
}
);