facebook-group

Is there a way of scraping content from Facebook groups?

ε祈祈猫儿з 提交于 2021-02-15 11:53:13
问题 I'd like to get the content from a facebook group since there is a lot of valuable information in there. So is there way, hack or function that you could accomplish this with? 回答1: Simple, do an HTTP POST to the Graph API /{groupId} with your access code and you will get information programmatically. See: http://developers.facebook.com/docs/reference/api/group/ 来源: https://stackoverflow.com/questions/8953409/is-there-a-way-of-scraping-content-from-facebook-groups

get Facebook Group Id using identifier or url

ぃ、小莉子 提交于 2020-01-12 07:19:12
问题 I would like to get a facebook group id by using a URL or specific identifier. For ex: http://www.facebook.com/groups/chennaifoodies/ should give group id 194462073956868. Is there way to get the group id by using above URL or identifiers like 'chennaifoodies'? If I tried https://graph.facebook.com/chennaifoodies , then it gives the fan page id. I think 'wallflux' has done a wonderful script, so I need a script like that to get group the id. is there any way to get a group id using graph api

How to get the Seen By data for group post on Facebook

百般思念 提交于 2019-12-31 07:37:11
问题 Using Facebook Graph API, for group posts, we were able to retrieve the data for comments and likes. Now with the introducing of Seen By info on group posts, there seems no API exposed to get the Seen By data yet, or there is? We are not able to find that info with documentation at https://developers.facebook.com/docs/reference/api/post/. 回答1: As @Tommy Cursh suggested, currently there is no API available to get the Seen By data programmingly. Hopefully Facebook will provide it someday soon.

Facebook Group Feed PHP SDK

我与影子孤独终老i 提交于 2019-12-24 06:59:10
问题 Okay, I'm getting completely confused here. The facebook API has baffled me and I've not got a single clue what I'm doing, I keep seeing terminology getting slung around like "user your auth token" and such, However I'm clueless on how I go about to get all this setup and working, so without just getting a link pasted as an answer could we get some explanations, almost tutorial-esque responses please. The situation is as below: Dev webserver with a cron job setup to download each days posts

Facebook graph access closed group feed/posts

让人想犯罪 __ 提交于 2019-12-24 01:12:54
问题 I am trying to get a list of posts in a particular group on facebook that is closed , also I am not the admin, just a member in this group. When I am trying to access the group's posts via graph explorer (I checked all the permissions) I am getting an empty list returned. What is facebook's reason for not allowing this access? If I am a member of this group I have access to this information anyway via browser/scraping... Your thoughts and suggestions are appreciated. 回答1: What is facebook's

Fetching user group from facebook using facebook api

浪子不回头ぞ 提交于 2019-12-08 13:07:35
问题 I want to fetch the user groups and want to list them but I am unable to fetch the groups from Facebook, though I am able to do *Successful Login *fetch friend list *i have also allowed the permission user_groups for fetching user groups here I am doing like this for fetching user group AsyncFacebookRunner mAsyncRunner = new AsyncFacebookRunner(facebook); mAsyncRunner.request("me/groups", params, new GroupsRequestListener()); public class GroupsRequestListener extends BaseRequestListener {

how to get members' info by using group id in facebook?

允我心安 提交于 2019-12-08 05:43:49
问题 Here is a group A. I want to extract the members' group information as the training data set. For example, group A has a list of 400 members and each member joins a number of different groups. How can I get the members' information from the group? Can I get members' information by simply using the group id? 回答1: You can query the group endpoint using the graph api... https://graph.faecbook.com/GROUP_ID/members This will return (quoting facebook docuemntation) : All of the users who are

How to get the list of facebook groups using graph api

旧巷老猫 提交于 2019-12-05 11:17:56
In the Graph Api Explorer I did not find any permission like user_groups . I select all the "User Data Permissions" and "Extended Permissions" but it did not work. In graph api explorer I am using this command GET->/v2.4/me/groups . and i get empty JSON data Like this. { "data":[ ] } And if I use the old graph api version 2.2 Like GET->/v2.2/me/groups then I get the groups only in which I am admin not all the groups. If anyone have this experience and also have any solution please help me to solve my problem. Short answer: user_groups is deprecated with v2.4, see https://developers.facebook

How do I retrieve photos from a Facebook group using the GraphAPI?

不问归期 提交于 2019-12-04 08:05:31
问题 I would like to retrieve photos from a facebook group using the GraphAPI. Based on FB Docs I don't see any connections to photos. I would like to get the photos and the users who uploaded them. 回答1: Graph API: http://graph.facebook.com/GROUP_ID/?fields=name,description, albums return { "name": "Group name", "description": "Group description", "id": "GROUP_ID", "albums": { "data": [ { "id": "GROUP_ALBUM_ID", "name": "GROUP_ALBUM_NAME", "link": "GROUP_ALBUM_LINK", "created": 1352388257,

Is it possible to get a facebook feed to a closed group that I belong to but do not own?

血红的双手。 提交于 2019-12-03 16:38:47
问题 I know it's possible to get an rss feed or whatever for wall posts of groups. However, every time I try it with a closed group that I belong to, it doesn't work. Is this possible if you aren't the admin or owner of a group but just a member? Here are the steps that I've taken so far. Create an application on http://developers.facebook.com/setup/ When you are done, you will see App Name, App URL, App ID, and App Secret. Copy down these data. access https://graph.facebook.com/oauth/authorize