i've found this page where they display events in your local town (based on Facebook events):
http://www.wherevent.com/detail/Kastellaun-Burgstadt-und-Weihnachtsmarkt-in-der-Burgstadt
As you can see they also show the attenders on the left side grouped by the gender.
Ok let's say you know the eventid and so you can get the names and userids of the attenders by this way:
https://graph.facebook.com/[eventid]/attending
But how do they get the gender/sex of each attender?!?
Thanks!
Related
Hello I am new at facebook graph API
when I used url like this
https://graph.facebook.com/v2.7/me?fields=id,website,about,first_name,last_name,gender,birthday,education,age_range,email,%20television,movies,hometown,context,devices,favorite_teams,work&access_token=EAAM...
I can get website, first name , gender etc of me
but when I try to get another user's information from this url
https://graph.facebook.com/v2.7/{user id}?fields=id,website,about,first_name,last_name,gender,birthday,education,age_range,email,%20television,movies,hometown,context,devices,favorite_teams,work&access_token=EAAM...
I can get null values expect first_name, last_name and id
How can I correct the mistake?
Note : the other user allows to show this info.
Thanks
I already tried lot of topics and follow some groups ok we can get facebook group id, but just some group I cannot get group id it return blank data, I also add token id but it isn't work
$url = 'https://graph.facebook.com/search?q='.$groupname.'&type=group&access_token='.$session->getToken();
some group work fine but some group get nothing.
https://www.facebook.com/groups/Happypattaya/
This is one of group url that I cannot get id.
I really need to use graph or facebook sdk to get group id.
Thank you in advance for your help.
when you search facebook response group id and name. Or you can get group id or you can have it in http://lookup-id.com ( get open/close facebook group id )
Calling this URL return a user object with public informations about a facebook user:
https://graph.facebook.com/100000050972893
100000050972893 is the facebook user ID. Is it possible to get multiple user objects with one call? I need to know the gender of about 200 users and I dont think its a good idea calling 200 times the graph URL...
Just found the answer:
https://graph.facebook.com/?ids=100000050972893,100000953354280
But I dont know where the Limit of IDs is you can check with one call...
I am unable to retrieve Status using FQL for Some Users...for Most of User it is working fine.. but for Some Users not ...
FYI Message is Public and Visible to all friends.
I unable to find what is the problem...Below is The Query..
SELECT status_id, message FROM status WHERE uid in (XXXXX,XXXXX)
User Must Need to Allow My Status Update under Privacy Settings>> How You Connect>> How people bring your info to apps they use
I am trying to get facebook status and replies for those status, so what I didn't find anything other than Status messages: [a link] https://graph.facebook.com/367501354973 (A status message from Bret). Looks like this require userid but how can I get user id's of my friends. If I get my friends can I get the status of friends of my friends. I have been searching every possible place to find an answer on getting facebook status along with the replies but so for no luck. It would be great if there is a webcrawler for something like this.
Check this
http://developers.facebook.com/docs/reference/api/status/
You can also use below facebook Graph API Explorer tool to test
http://developers.facebook.com/tools/explorer/?method=GET&path=580490479
You can get your friend's ID by below
https://graph.facebook.com/me/friends?access_token=
You can get updated of Your friends by
https://graph.facebook.com/580490479/feed
and for Posting check below
http://developers.facebook.com/docs/reference/api/post/
--- Samir