We developed a system which interacts with Facebook using the Graph API. In this case, I am trying to post a message in a group and I am with the following return:
My request in this Graph well:
v2.3/402998003100416/feed?message=hello
And the return is this:
{
"error": {
"message": "Permissions error",
"type": "FacebookApiException",
"code": 200,
"error_subcode": 1376025,
"is_transient": false,
"error_user_title": "No Permission to Post",
"error_user_msg": "You do not have permission to post in this group."
}
}
Obviously the problem is that the group's privacy is "closed" and I could only publish if it were a member, but I have not asked to participate in the group. My intention is precisely this, use the Graph to submit a request to join the group, something like clicking the "+ Group Join" facebook button itself. How to do it?
Leveraging the same way, I wonder if I can enjoy one fan page for the graph api.