Graph API shows only past events - facebook

I just came back from a three months break of programming.
Before leaving id/events would return any events (past and future) of a facebook page.
Now id/events/?limit=10&since=2018-08-02 returns a empty array or only one event whereas a lot of events are upcoming
Has something changed in the API or it is a setting from the page ?

Only Events for which the requesting User is listed as a Host or Guest
will be returned.
https://developers.facebook.com/docs/graph-api/reference/v3.1/page/events

Related

Facebook Graph gets all events that a user has been invited to

How do I get all events that a user has been invited to or rsvp'd to?
I've tried doing a request to /me/events and /me/events/not_replied but I just get empty responses back.
Does anyone have any idea?
Thanks
It was "noreply", not "not_replied", and it is not available anymore: https://developers.facebook.com/docs/graph-api/changelog/breaking-changes#events-4-4
In order not to break any existing Apps (not dealing with errors), you donĀ“t get an error, but just an empty response.

Some items are missing when using since parameter

I'm facebook graph API user.
Recently found that since parameter works weird.
I'm using that to find all upcoming events and filter out past events for a particular venue.
For instance:
When I use query like this
/v2.5/481931581856759/events?access_token=&limit=5
I getting all events.
But if I add since variable, some events are missing
/v2.5/481931581856759/events?access_token=&limit=5&since=1471468270
In this case can not find an event with start_time "2016-10-28T19:00:00-0700".
Why that happens or I misunderstand something?

How to get events from a page with the new facebook graph api v2.4

Earlier, this would give back a list of events:
clubversuz/events
Now it gives back an empty array called 'data'.
Ok..they say that now you should explicitly declare the fields in a request, so I tried that too with this, but it return nothing either. The clubversuz id is used below:
8261409764/events?fields=end_time,start_time,timezone,id,name
Does anyone know how to go further?
P.S. I just started with this API and yesterday I was glad: I could get events.
Now, one day later, it has been broken by changes from fb. Is this how it's going to be with the fb API, Create something, break, repair? :)
It seems that the behaviour is still working if you explicitly provide the API version to be v2.3:
https://graph.facebook.com/v2.3/8261409764/events?access_token=
When you use v2.4 in the above call, it's not returning any events. This might actually be a bug; can you create a bug report?

Facebook Profile Subscriber Count

Is there a method in the API to query the number of subscribers for one of the new profiles? I am talking about the new profiles (not pages), like this one for Tyra Banks:
http://www.facebook.com/XOXOTYTY
I can see on that page that she has 696k subscribers (more specifically, 696,833 as it shows when you search for her profile), but I cannot find that number in the graph.
I know that /userId/subscribers gives a list of my subscribers (which is awesome), but many pages that I'm querying have over 10k subscribers, so it doesn't list them all, and I just need the count.
Only user object have subscribers connection.
For page you can get count of "fans" by looking for likes property.
Update:
If you're looking for subscribers count on user object you need to use paging to get all the list, since there is no way to get only count of this data (currently, I hope this will be added later, since it's a really in high-demand by some players)...
Yet now you're out of luck since there is a BUG #134805496634011 with paging, so you may only get first page. There is limit argument but it's can't be whooping 697k for sure...

Possible to get when a facebook friend request was issued?

The friend_request stream contains 2 fields - uid_from and uid_to. There's no date info on when the request was made.
Is ther any other table that contains that information?
Thanks!
Got word back on the Facebook forums - it's not possible
You can track that yourself, on a going forward basis, but subscribing to friend events. The subscribe API falls under the "real-time" updates. Not sure what you are trying to do.
http://developers.facebook.com/docs/api/realtime
If you look at http://facebook.com/me?and=you for new friends it shows their date added. This is public data and has to be stored openly somewhere!!