skip to Main Content

What I’m trying to do is basically described in this particular
doc page from FB itself: click (post, comment content and listen for new content), but for a “normal” closed group instead of a group in a workplace.
According to the document, this would only be possible by storing the user access token of the group admin and use various graph API endpoints, but this does not seem like a good solution to me.

Is there any other known way (something like creating a Facebook app which will create posts, comment/like stuff and listens to new posts made in the group (similar to the group bots in workplaces))?

Thank you in advance!
Luca

2

Answers


  1. Is there any other known way (something like creating a Facebook app wich will create posts, comment/like stuff and listens to new posts made in the group (similar to the group bots in workplaces)) ?

    No, there is not.

    Reading posts and creating them using the group admin’s token would be possible, but that’s about it.

    • Liking posts in the name of users has generally been removed (not just for group posts),
    • commenting will likely not be possible either for any non-admin in a closed group, and
    • Webhooks do not cover non-workplace group feeds as of now either, so you’d have to do constant pulling to get new posts.
    Login or Signup to reply.
  2. And yet, the Facebook API clearly states:

    In groups, bots can do many of the things that people can do. This means you can build bots that post new content, comment on content with new information and like posts to indicate acknowledgment or approval.

    https://developers.facebook.com/docs/workplace/integrations/custom-integrations/bots#botsingroups

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search