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
2 answers

Facebook Graph Api v2.0+ - /me/groups returns empty

I am trying to get my groups with graph api v2.0, but data returns empty: { "data": [] } Before this I used v1.0 and this was workable. I use: https://graph.facebook.com/v2.2/252637181559106?fields=id%2cname&access_token=**** Same result I have…
1
vote
0 answers

java.net.UnknownHostException: Unable to resolve host "graph.facebook.com" when I run an Android Facebook app after closing emulator

I am able to see facebook groups when I run app for the first time. But when I close the emulator and run my application again, I am getting the following response. {Response: responseCode: unknown, graphObject: null, error: {HttpStatus: -1,…
chk
  • 51
  • 1
  • 4
1
vote
0 answers

Can FB Graph API Explorer be used to download group data from Closed groups?

i know the FB Graph API works for open groups, to download that group's data. But it doesn't seem to work for Closed groups that i am a member of. When i get an Access Token (after clicking user_groups in the 'Select Permissions' dialog box), and…
1
vote
0 answers

How do I post on facebook groups using php sdk?

I want to post on my facebook groups. This is my code: $access_token = $facebook->getAccessToken(); $info = $facebook->api( '/me/groups', 'GET', array( 'access_token=' => $access_token ) ); $count = count($info['data']); print "

Alege…

Attila Naghi
  • 2,535
  • 6
  • 37
  • 59
1
vote
0 answers

Fetch groups data from Facebook in iOS

I am trying to fetch the groups data from facebook using the below code. [FBRequestConnection startWithGraphPath:@"me/groups?fields=cover,name" completionHandler:^(FBRequestConnection *connection, id result, NSError *error) { if (!error) { …
RamChandraReddy
  • 239
  • 2
  • 12
1
vote
1 answer

Get facebook group size

I'm trying to get all the facebook groups of a user, and sort them according to various criteria. I can easily sort them by "facebook order" using this: FB.api('/me/groups', {fields: 'id, name, bookmark_order'}, function(respGroups) { …
1
vote
1 answer

Getting facebook group id from group url

i have tried to get facebook group id (gid) by it's url using C#, with no luck. I have looked over the facebook graph tables, tried PHP, FQL queries, and even tried P3P to get the feed itself of the group page (To get the 'cid' value) - But again -…
1
vote
1 answer

How to invite users to facebook group with facebook api

I need invite users to my group i tried with javascript, this is the code var invitado= new Array(); invitado["member"]=("100003269899519"); FB.api("/528621163869329/members", "POST", invitado, function(response) { if (!response ||…
1
vote
1 answer

Banning people from Facebook group using the Graph API for PHP

Hi I am developing an app to use along with a journal-system for managing a facebook group. For this system i wish to impliment a way to ban specific users, and I'm not sure what I'm doing wrong, anyway this is the code i use for it. try { …
1
vote
2 answers

Open FB group page in browser using facebook-unity sdk

I am using facebook unity sdk in my ios game made using unity. I have a code in my game, void OnClick() { Application.OpenURL("https://www.facebook.com/roadsmash"); } which leads to group in facebook. Facebook plugin detects all facebook links…
1
vote
2 answers

Proper way to query and match multiple data points Apigee

I am building an app that does the following: Grab Friends from Facebook Select 1-2 friends and add them to a group I want users to be able to login with Facebook and have it look through all the groups and bring back any that their friends may…
leylandjacob
  • 201
  • 2
  • 5
1
vote
1 answer

FQL and/or Graph Calls only return a limited list of users groups - thoughts?

I have been playing around with different fql and graphs to get a FULL LIST of user groups. Meaning, my friends list of groups, but it's not working the way I had hoped. When you use the Facebook Social Search (blue bar search) - Facebook returns…
1
vote
1 answer

Facebook token for searching groups

I have created an application on developers.facebook.com from my profile. Get APP ID, APP SECRET and generate TOKEN. Now, when I send the request like https://graph.facebook.com/search?q=media&type=page&access_token=MY_TOKEN is ok, but when I try…
1
vote
1 answer

Issue a request for a user to join a group?

I'm using the app and game groups API atm and am trying to let users Join app groups that they see while browsing. I've researched how to do this and am not sure how to do this. It seems that I would have to issue a user to user request from the…
1
vote
1 answer

I want fetched questions in FACEBOOK GROUP using FQL

I fetched posts in facebook group using below FQL, but I found that they except question posts in fetched posts. Used FQL Query: SELECT post_id, created_time, permalink, message FROM stream WHERE source_id = [group_id] I used below FQL, and I…