Events Facebook api: Event Participant (FQL)

I gather event attendees for facebook events. Until yesterday, I received the due number of participants in the event. But unexpectedly, counters have the following problems:

  • For many plans for each subsequent request, I get a random number of members. Weird question. It seems facebook servers are not synced properly or something like that.

  • Previously, for the same query string (see below), I was getting the correct counts. But now the score is much smaller. It seems that at least for a few events now they only send members that are associated with our application (we use the facebook connection).

Example: for the following query, I am currently getting "31" members. But there are more event page counters.

FQL: FB.Facebook.apiClient.fql_query('SELECT uid, eid, rsvp_status FROM event_member WHERE eid=336671213618', function(result, error){alert(result.length);});

Event page: http://www.facebook.com/event.php?eid=109411842404023

Are there any recent changes to the facebook API or policies?

Thanks in advance.

+5
source share
1 answer

Yes, there have been changes in this Facebook api due to a hole in the loop

you can read about it here

and the developer who posted this loophole ,

I think you'll have to wait until Facebook finds out.

0
source

All Articles