Questions tagged [facebook-group]

A Facebook Group is a collection of Facebook users. A Group allows you to share posts/links pictures with those users.

A Facebook Group is a collection of Facebook users. A Group allows you to share posts/links pictures with those users.

A group can be have 1 of 3 designations:

  • Secret: only current members can see or access the group
  • Closed: the group is publicly visible, but only members can access information
  • Open: publicly visible and accessible
202 questions
1
vote
1 answer

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

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?…
horatio.mars
  • 559
  • 3
  • 9
  • 17
1
vote
0 answers

How to post on a Facebook group as a Page, using the Graph API Explorer?

I am the administrator of website, a Facebook group, a Page and a Facebook API. I would like to create, once a day, a post on my Facebook group using my Page name as author AND using the Graph API Explorer. Is it even possible? To start simply, I…
1
vote
1 answer

Loading only administration messages for groups with Facebook Graph

my simple goal is following: i would get the news feed from a facebook group, but only the messages from the administration himself. as a examples, i would get the news from this groupb https://www.facebook.com/wirsindhelden?sk=wall&filter=2 But…
volf
  • 809
  • 7
  • 8
1
vote
1 answer

How to embed Facebook like box widget for group (+ USER POST STEAM )

EX : http://www.facebook.com/plugins/likebox.php?id=144375998956146&width=250&connections=8&stream=true&header=true&height=700 I need to steam normal user posts too... but this demo steaming only "Group user"
l2aelba
  • 21,591
  • 22
  • 102
  • 138
1
vote
1 answer

Graph API: Is it possible to get Facebook members' names and location in a Facebook group which I am a member too?

I need to get the names and location of a Facebook group which I am also a member in it. I could see most of the member names and their location but I could not seems to be able to get the data out from Graph API. May I know if it is possible to get…
1
vote
0 answers

Requesting posts of a facebook group

I am looking to create a product that retrieves the posts of a public facebook group (viewable to non-members) and analyse that data based on (from necessary to useful) posts (as strings to be processed), like count, different reaction count and…
George
  • 13
  • 3
1
vote
1 answer

Facebook Graph API - Group permissions - throws 'invalid scope' error when authorizing

There have been significant changes in Facebook Graph API. Among them, permissions for group have been changed, so now are required 3 new permissions: groups_access_member_info, publish_to group, user_managed_groups…
1
vote
0 answers

403 error when posting to group using Facebook Graph API

I am trying to use the facebook graph API to post to a facebook group that I am the admin of.When I make the POST request,I am getting a 403 access denied error. This indicates some problem with authentication, I believe. I have made sure my user…
1
vote
0 answers

Why can't I publish a comment on a facebook group via graph api since Oct. 18?

I use graph api to publish a comment on a post in a facebook group. Before October 18, 2017, this method still working normally: POST /v2.10/{object-id}/comments HTTP/1.1 Host:…
1
vote
0 answers

Facebook graph API search in group feed

According to Facebook graph API playground it is possible to search in a page/group feed , I'm using the following URL to do so: https://graph.facebook.com//feed?q=&access_token= And this is the result i'm…
lior r
  • 2,220
  • 7
  • 43
  • 80
1
vote
0 answers

Invite People with the Facebook Graph API

Good Morning, I'm a bit desperate... I try to invite people to a group where I'm the Admin of the Group. With a get me/friends. I get a List of Users. There have an ID. This ID I try to Use for invite People. For trying I use the…
1
vote
0 answers

Facebook Group API

I want to build a small app, which helps people to learn the names of members of any facebook group they are part of (simular to a vocabulary trainer). Therefore I want to access the images and names of people in a group, but I have problems…
nik
  • 2,114
  • 3
  • 22
  • 43
1
vote
0 answers

Facebook Go Live button does not connect a stream to Group Private or Closed

I have a Go Live button on my site. It connects fine to Timelines and Fan Pages I manage but when I connect to a Group(Public or Closed) it fails. Does anyone know why or found a solution around this? This is the code that I am…
Rob
  • 15
  • 9
1
vote
1 answer

Calling "me/groups" using Python Facebook SDK returns empty data

I want information from groups where I am and I can not get it. Always the code returns an empty data. {u'data': []} My code is as follows: import facebook graph = facebook.GraphAPI(access_token='my token') a =…
1
vote
2 answers

Facebook / Javascript API Display all data pulled not working

Im trying to get all the messages from a facebook group post to display. with the code below: FB.api("/groupid/feed", function (response) { console.log(i + " : " + response.data.length); for (var i = 0; i < response.data.length; i++) { …
Brett
  • 161
  • 4
  • 16