如何使用 Facebook 图表浏览器 post 群组中的状态?
how to post a status in a group using Facebook graph explorer?
Https://graph.facebook.com/v2.3/238155829716205
我想 post 公开组中的状态 使用 facebook 图的查询是什么 api 谢谢
查看文档
调用如下
POST /v2.3/{group-id}/feed
包括适当的字段。
FB.api(
"/{group-id}/feed",
"POST",
{
"message": "This is a test message"
},
function (response) {
if (response && !response.error) {
/* handle the result */
}
}
);
Https://graph.facebook.com/v2.3/238155829716205
我想 post 公开组中的状态 使用 facebook 图的查询是什么 api 谢谢
查看文档
调用如下
POST /v2.3/{group-id}/feed
包括适当的字段。
FB.api(
"/{group-id}/feed",
"POST",
{
"message": "This is a test message"
},
function (response) {
if (response && !response.error) {
/* handle the result */
}
}
);