Questions tagged [facebook-events]

Represents a real life event in order to inform your Facebook friends about it.

146 questions
1
vote
1 answer

put latitude and longitude via graph api in facebook event

I would like to create an Event on my FB fan page via PHP SDK Graph API V.3.1.1, by defining latitude and longitude. Here is my request : $event_param = array( "access_token" => $access_token, "name" => $name, …
1
vote
1 answer

Facebook PHP SDK Graph API - is it possible to access PAST events?

I can access the events info for a page. $events = $facebook->api('myPage/events?access_token=mytokenhere'); I've tried: $events = $facebook->api('myPage/pe?access_token=mytokenhere'); Which seemed the obvious choice but it returns a fatal. I…
1
vote
3 answers

get past events through the graph api

I can't seem to be able to access past events in the graph api, it only seems to give me access to the current events, either the events API is broken, or facebook does not provide access to past events, but there is nothing in the docs that would…
Ahmad Nassri
  • 1,299
  • 1
  • 12
  • 18
1
vote
0 answers

Tracking App Installs on iOS 14 from Facebook Ads for Child-Focused Apps without Ad ID: Best Practices

We have added the Facebook SDK to our child-focused app and are receiving install events on the Events Manager. However, we are facing a challenge in tracking app installs on iOS 14 devices and attributing them to a Facebook Ads campaign. This is…
1
vote
0 answers

Flutter - facebook app events android error

I install the package facebook_app_events version 0.13.5 that includes the latest facebook sdk. The problem is that when I try to log an event or get an anonymous Id it throws a kotlin exception. I upgrade my kotlin version to 1.5.31 also I try with…
1
vote
1 answer

post event on facebook profile with php

I'm trying to post an event to my facebook profile with the Graph API and PHP. I've succesfully created an event but its not posted on my profile but only on my app-page. The fb-app is the creator of the event, but I want my own profile to be the…
waterschaats
  • 994
  • 3
  • 18
  • 32
1
vote
1 answer

Permission to get events from Facebook Page

I am attempting to get events from a specific page, through a person who is administrator of the site and the host of the events. This will not work unless i make the administrator a tester on my Facebook App. Anyone who knows which permission i am…
Exasis
  • 51
  • 1
  • 2
  • 8
1
vote
0 answers

How to block Facebook webhook calls for app specific users?

We have a Facebook app that manages user business pages, we are using webhooks to subscribe to 'feed' event for access comments. Our application has 7 days free trial after that the account becomes inactive and may be deleted from our database. But…
1
vote
1 answer

Facebook graph api me/events returns blank

I'm using the Graph API Explorer and have given permissions for user_posts, user_likes & user_events. me/posts and me/likes return non-empty data, but me/events returns this: { "data": [ ] } I do have ongoing and upcoming events (interested)…
coding_idiot
  • 13,526
  • 10
  • 65
  • 116
1
vote
2 answers

Facebook Api only returns 25 events max?

I am testing my new iframe app, trying to get all events of an user, using the graph api. $tempevent = $facebook->api('/me/events', 'get', array("fields"=>"id, name, start_time")); so it only returns 25 events .. the farthest events. Any…
Sven Koluem
  • 687
  • 1
  • 13
  • 31
1
vote
1 answer

RestFB Searching events by start_time

I am unable to write GET request of the event specifying by start_time. Connection eventConnection = fbClient.fetchConnection("search", Event.class, Parameter.with("q", "york"), Parameter.with("type", "event"),…
Madness
  • 113
  • 2
  • 8
1
vote
2 answers

Decoding recurring events from Facebook Open Graph API?

I am trying to work out how to get better data from the Facebook Open Graph API as it appears they now support recurring events for profile pages, yet there does not appear to be any way to get that correctly from their API as they return the start…
Kendall Bennett
  • 2,353
  • 1
  • 17
  • 18
1
vote
1 answer

Get All Public Facebook Events by Graph API

Over here need to ask whether there is any workaround to get all facebook events even if it is of a particular city. I have also tried by getting venus and then getting events happening over there, but it is strictly inefficient. API to get events…
Syed Asad Abbas Zaidi
  • 1,006
  • 1
  • 17
  • 32
1
vote
0 answers

Permissions issue when embedding Facebook event in externally hosted website

I run a website which runs monthly events. We recently switched to using Facebook events so that we can take advantage of more streamlined social sharing. I created our first event which works just…
commadelimited
  • 5,656
  • 6
  • 41
  • 77
1
vote
1 answer

Android - Facebook Event track Purchase

I'm working on implementing the Facebook tracking of Purchase event in Android. I followed the guide here https://developers.facebook.com/docs/app-events/android, and made a custom Bundle to send to FB. The problem is, on the Facebook page of…
nightfixed
  • 871
  • 1
  • 12
  • 24
1 2
3
9 10