Is there a way to get the join date in facebook API?
Im looking on the API docs but I can't find anything.
reason: we don't want a user to register using new created account in our site to avoid multiple dummy accounts? Is there anyway to do this?
Thanks!
Unfortunately there is no such field in the Graph API. Have a look at
https://developers.facebook.com/docs/graph-api/reference/v2.1/user/
Related
I want to create Facebook group using Graph API.
Actually what i want to do: I am having a course module, so when admin add a new course i want to create a group in Facebook with course name.
Can you please help how to create Facebook group using Graph API?
Sorry, but it seems like it is not possible to create "Group" or "Event" via Facebook API. Probably closest option for you is to create a new page or post.
I need help.
We all know that in v2.0 all permissions of friends_* are removed.
But still is there any way to get birth date of friends who also use your app?
I am using below permissions:
&scope=public_profile,email,user_friends
Any help would be appreciated.
With Graph API v2.0, all friends_* permissions have been removed (as you wrote): https://developers.facebook.com/docs/apps/changelog#v2_0_permissions
So, there's no way to get the birthday of the User's friends via the Graph API anymore.
i dont know if this could help you but i think it could be worth a try. there is the possibility to subscribe to facebooks friend calender api via a link: e.g "webcal://www.facebook.com/ical/b.php?uid=10001111111&key=AQDcQxnFPn7Sb9WridI" - you can add this to google calender, ical or other. via this subscription you can receive all the info you need. as we have the same issue with our application we will try to figure out a way how to retrieve and use this information. anyways i dont know if it is an option for your app.
Follow up to this question for Facebook Friends.getAppUsers using Graph API that pulls friends using app by
https://graph.facebook.com/me/friends?fields=installed
is it possible to get date of joining also with the id’s?
No, Currently it is not possible to get date of joining of user to app.
But you can do one thing whenever any fb user registers/ connects with facebook application, store current date/time with his facebook id in your system. And when you want display date of joining then map friends id with your database table.
Nope, you can't do this :( Even trying to get all their news feed and choosing the first or most backdated one won't work anymore. A very funny and probably irrelevant attempt could be by searching the user's inbox for a "welcome to facebook" message.
Also, if you could tell us why you need this information, you might be able to get suitable alternatives.
Can any one help me on that how can i get Admin of events from facebook using graph api, i also search field of event which facebook provided to us but couldn't get admin field, kindly help me on that thanks in advance
You can try this:
https://graph.facebook.com/{event_id}/admins
Using FQL, query the event table (https://developers.facebook.com/docs/reference/fql/event/) and read the creator (id of user who created the event). More than likely they should be one of the admins for the event.
Ive looked through the API and dont see it, but I thought Id ask anyway. Can I add users to a group through the API?
It is not possible to add users to a group via the API.