Questions tagged [facebook-events]

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

146 questions
0
votes
1 answer

Facebook Graph API Events

I want to make an application where I will add specific events to a webpage, and users will Login with Facebook into my website and can invite their friends to any events they want. In the Graph API Event docs…
Ananth
  • 4,227
  • 2
  • 20
  • 26
0
votes
1 answer

FB API App-scoped user id forbids event invitation

On an FB application (created before April 30 2014), users to our website are given the choice of picking friends to invite to an event they create. The website is using the JS SDK v1.0. The user ids being returned to the visitor trying out the tool…
planestepper
  • 3,277
  • 26
  • 38
0
votes
3 answers

Facebook php sdk v.3.2.3 - event create suddenly stopped working

Over one month ago I created FB app for site, which was able to create user events. It uses FB PHP SDK v.3.2.3 with Graph API version 1.0: $facebook = new Facebook(array('appId' => MYAPPID, 'secret' => MYAPPSECRET)); $facebook->api('/me/events',…
cromdev
  • 27
  • 1
  • 7
0
votes
1 answer

How to get past/ended public events from facebook using graph api/FQL?

I tried using the since and until parameters to get past events but it doesnt seem to work. The results from using since and until parameters give only events that have an end date in the future and a start date within the specified time limit. But…
0
votes
1 answer

How can we retrieve the upcoming facebook events that are located in a specific country(location)?

I want to access the events listed all over FB in a specific location? By these events I mean the open events.
0
votes
1 answer

Is the Event Creator Field an Array

The FQL event object has a field called Creator. That is described as: "Creator of the event" It is also noted: "This field is indexable" Does the creator field really just return the user who initially created the event or does it return an array…
Ben Pearce
  • 6,884
  • 18
  • 70
  • 127
0
votes
1 answer

Get Facebook 'share/post' event for share dialog

My site allows each user to share a link, say http://www.my-site.com, on facebook. I'd like to count the number of times each user shared my url, as well as the date of the last share. This would have been pretty easy given one would have used the…
CodeBender
  • 67
  • 9
0
votes
2 answers

Can I get users that checked into my Facebook event or that are at my event?

Using Facebook's JavaScript API I can get my event and the rsvp status of all the attendees. What I'd like to get is information on who checked into the event, or updated their status to say they were at the event. Status of person at my event:…
TwisterMc
  • 149
  • 9
0
votes
2 answers

Create an Event on FB and invite friends through ios7

Hi I have create an event on Facebook through my iOS app by following code -(void) createEvent:(NSString*)eventName Eventdesc:(NSString*)eventdesc EventDate: (NSString*)eventDate{ NSURL *meurl = [NSURL…
Vipul
  • 130
  • 8
0
votes
1 answer

Facebook event without longitude/latitude but still showing a map

I'm retrieving events and I'm using longitude/latitude to display them on a map. Some events don't correspond to a Facebook place and only have an address typed by the creator of the event. When I retrieve the event using Facebook graph explorer,…
Alain Zelink
  • 889
  • 2
  • 15
  • 33
0
votes
1 answer

Facebook Event API, users does not receive notifications

After i invite friend via app (JS api) they don't have any way to accept invitation (they don't have notifications, or notification disappear directly on hover). So they are being invited, but don't even know about that. Here is how i invite friend…
0
votes
1 answer

Get place name from Facebook event

I'm using the Facebook API to fetch the events created by my band on the band-page. I then show the events on the band's website so I don't have to update our shows on multiple platforms. Using this FQL query, it works fine. SELECT name, pic,…
0
votes
1 answer

How do I create a Facebook event to have a specific time and time zone which does not change for individual users via the Graph API?

I am using the Facebook Graph API to publish events to a Fan Page. Our events are in-person events; therefore, we would like for the events to be published in the location's time zone so that when any Facebook user sees the event; it is listed in…
Ricardo
  • 106
  • 5
0
votes
1 answer

How to get facebook events via event id?

How to get Facebook events via event id? i wanted to enter a event id to get all of the data, is there any API for this? or please tell me how to get the events via graph api.
Umair
  • 123
  • 3
  • 13
0
votes
1 answer

Fetching facebook event feeds using graph api

I was able to fetch facebook events through my code until couple of days back and it used to return me proper JSON data with all the requested fields. Suddenly i am trying to do it today again and i get only id value and nothing else. Any idea what…