Represents a real life event in order to inform your Facebook friends about it.
Questions tagged [facebook-events]
146 questions
-1
votes
1 answer
Get public events from Facebook Graph API via Android SDK
I'm trying to get public events from Facebook Graph API with the following code:
val request = GraphRequest.newGraphPathRequest(
AccessToken.getCurrentAccessToken(),
"/search",
GraphRequest.Callback { response : GraphResponse…

Dai Dao
- 327
- 1
- 2
- 8
-1
votes
1 answer
Facebook Fan Page - Invite Fans to Event
is there a way to invite fans from a fanpage to an event? (Who are not your friends on facebook)
I browsed the web, but just found answeres, who are some years old.
I already tried to invite with email addresses, but the user doesn't receive this…

csskevin
- 383
- 2
- 14
-1
votes
1 answer
Can I get event details from a personal fb account(not page) to to my website?
I am able to fetch event details in my php based website through Facebook graph API only if the event is uploaded in facebook page. But if I use a personal fb account instead of fb page I am not able to get any data. In both cases I am using same…

Shubham Pokhriyal
- 512
- 1
- 7
- 17
-1
votes
1 answer
Get facebook calendar events
I'm trying to get a user's facebook calendar events.
I added the permission user_events, and this is the request I use -
var request = FBSDKGraphRequest(graphPath:"/me/events", parameters: nil);
request.startWithCompletionHandler { (connection…

Omer
- 221
- 3
- 13
-1
votes
1 answer
Facebook graph event date time for users acceptance
I'm trying to find a way to get the order in which people decided to attend some Facebook events, using Graph.
I can see who is attending the event, who declined, who "maybe", but I didn't find a way to get the date time when people accepted or…
-2
votes
1 answer
Can I post event photos to Facebook event by website or mobileApp using graph-api 2.7?
After I read this https://developers.facebook.com/docs/graph-api/reference/event/photos/#Creating I'm not sure that POST request is Upload photo to event or just upload url photo (param "url" in the table) or else ? I try to find any example but…

crazyoxygen
- 706
- 1
- 11
- 30
-2
votes
1 answer
How to access events created by user in Facebook API by using Javascript?
I know very basic of javascript and this is my second call to Facebook API and I am having a problem. I need to read the list of user's events. Here is my code inside a function:
FB.api('/me/events', function(response) {
console.log("event…

Bernard
- 4,240
- 18
- 55
- 88
-2
votes
1 answer
Can't export events to Facebook using Graph API
We're trying to export events from our web site to Facebook throught Graph API, and it worked fine, but now this functionality is impossible to do.
I did some research about this, and found that many pages (including Facebook API Documentation)…
-2
votes
1 answer
how to fetch facebook event from event id in code ingnator?
I have the following query for fetching of events from facebook:
$fb_events = $this->facebook->api('/me/events?fields=name,start_time,timezone,location,id,description,cover,picture,venue&limit=1');
but I want fetching from event id I…

Phani
- 23
- 2
- 9
-3
votes
1 answer
Facebook Graph C# SDK Ver 6.0: Unable to create event on App's Page
I am converting a fully working C# Web Application from REST API to GRAPH API, using FB C# SDK 6.0. I have been able to obtain access token and post event to my "personal" Facebook page without problem. But I need to post the event to the Page…

user1306457
- 11
- 1
-4
votes
1 answer
Post Events to Facebook (out of Wordpress / PHP)
I have really searched for a long time to get this working or to find a plugin which does exactly that. Maybe I am understanding something wromg:
I want to automatically create an event (not a normal post) on Facebook with some Content from a…

Claudio Götz
- 21
- 2