Represents a real life event in order to inform your Facebook friends about it.
Questions tagged [facebook-events]
146 questions
25
votes
2 answers
Facebook Graph API does not return Page Events
This looks a kind of duplicate question but actually NOT.
So the problem is https://www.facebook.com/julytalk/ has events, for sure.
But when I tried on Facebook Group API toolkit, it returns empty…

Codemole
- 3,069
- 5
- 25
- 41
15
votes
4 answers
How to use AppEvents.activateApp() in 12.0.0 version
I have updated the FBSDKAppEvents to 12.0.0 version, and the function AppEvents.activateApp() in AppDelegate is now deprecated. I have searched in the Facebook documentation, and unfortunately I didn't found any information about that, and I don't…

M. Mansuelli
- 1,083
- 9
- 19
10
votes
1 answer
Facebook Retargeting Pixel code for React Native
Hi I am try to add facebook retargeting pixel for my react native app, and I am hoping that the community can help me clarify something. First, to track an event PageView or ViewContent of a product, I add the following script to the product…

Thang Pham
- 38,125
- 75
- 201
- 285
7
votes
2 answers
Create an Facebook event using JQuery and the graph api programmatically
Is there a way to using a JQuery function to programmatically create an event to a users Facebook page? I have created an app that asks the user for the create_event permissions through:

Sam Johnson
- 943
- 1
- 13
- 19
7
votes
2 answers
Facebook Codeless Event - iOS app does not connect to Events Manager
I'm trying to get Facebook Codeless Event to work, but I can't seem to connect my app to Events Manager.
Followed instruction from this article: https://developers.facebook.com/docs/app-events/codeless-app-events/#ios
After updating Facebook Core…

green0range
- 557
- 6
- 18
6
votes
1 answer
Fetching photos and videos from a Facebook event using the Graph API
I'm attempting to fetch all photos and videos from a Facebook event using the Facebook Graph API.
Currently I'm using the /{event-id}/feed endpoint, described here https://developers.facebook.com/docs/graph-api/reference/v2.6/event/feed
I can get…

Jón Trausti Arason
- 4,548
- 1
- 39
- 46
6
votes
0 answers
How to filter Facebook events by country in Graph API
I'm trying to search public events on Facebook using the Graph API.
http://graph.facebook.com/search?q=term&type=event
I've noticed that most of the results are irrelevant. For example, I'm in the UK and the search return events happening in Asia…

ivacf
- 1,163
- 3
- 11
- 15
5
votes
1 answer
How to query for the number of shares of a Facebook event URL?
One of my Facebook apps allows users to share a URL to a Facebook event using the default Facebook sharer. I was under the impression that you can query for the number of times such a URL got shared on Facebook. However, when I query the Graph API…

Marijn Huizendveld
- 791
- 2
- 7
- 23
4
votes
0 answers
Turn off automatic collection of Purchase event only in Facebook SDK for Android
I am upgrading Facebook SDK for android to v5. https://developers.facebook.com/docs/app-events/getting-started-app-events-android#
I don`t want the Purchase event to be logged automatically since I have other payment gateways active apart from…

binaryKarmic
- 978
- 7
- 22
4
votes
0 answers
Specifying the date format for a facebook event start time in a graph API call
According to the following documentation the format of dates returned from the Facebook API can be adjusted via the date_format parameter. In the REST URL below I have implemented the parameter "U" in a facebook event call specifying that I'd like…

Ben Pearce
- 6,884
- 18
- 70
- 127
4
votes
2 answers
Callback function with new Facebook Share button
I'm trying to subscribe to the "edge.create" event in conjunction with new Facebook Share button without any luck.
I'm using the standard event subscription:
FB.Event.subscribe('edge.create',
function(response) {
console.log(response);
…

Gabriele Perego
- 113
- 2
- 2
- 7
4
votes
1 answer
Getting all events attended by friends on Facebook through FQL
I try to get a list of all events attended by all friends on facebook. Here is the query:
SELECT name, venue, location, start_time, eid FROM event
WHERE eid IN (
SELECT eid FROM event_member
WHERE (uid IN (SELECT uid2 FROM friend…

Nikolay Tsenkov
- 1,128
- 10
- 26
4
votes
1 answer
Facebook recently changed the way they handle picture in events. How do i get the event picture after those changes?
Facebook recently changed the way they handle pictures in event.
Now you can upload a photo which will be displayed when you post an event to someone's wall or in a group and that you can use as a cover.
How do i get that image?
Before i was using…

Nicola Peluchetti
- 76,206
- 31
- 145
- 192
4
votes
1 answer
FQL event pic_cover returns null
I am trying to fetch the cover picture for a public event on Facebook, but the pic_cover field returns null.
Here is the event: https://www.facebook.com/events/545127275518406/
Here is my FQL query: SELECT pic_cover FROM event WHERE…

Mark Thë Brouch
- 179
- 3
- 12
3
votes
0 answers
Error on Facebook official_events Graph API "(#3) Application does not have the capability to make this API call."
I can't get the official_events API to work in the Facebook API.
I made a Facebook app:
App type: Business
Not "Native or desktop app"
Latest API versions
I request an access token with the following permissions. (Probably more then needed but…

Maarten
- 81
- 3