Search code examples
facebookfacebook-graph-apifacebook-php-sdk

How to get Facebook group created date using Graph API


As I can get other details of group like members, feeds etc, but being an admin, I want a created date of group using graph API. Please help me...

Thanks.


Solution

  • There is no straight option, but there are two workarounds to achieve something (it's not 100% perfect):

    • you can get the date when the group was last updated: Group, using updated_time field
    • second option, you can create a doc, that the group was established, and when you will have created doc, you can access created_time field, on group docs: Group-Doc

    Hope, that helps.