I would like to basically get all the events that i get invited to on facebook to feed my internal website DB with that info; lets say every day using a cron. the problem is that I think you can get the events if you are the one posting the event not the one receiving the invite.
am I wrong or can someone offer me some insight into how to get this accomplished
You can get the events you have not replied using
me/events/not_repliedor using Graph Api Explorer.You can get all upcoming events that you have subscribed/accepted via
me/eventscall. Graph APi Exlporerand save the time in your db and use
sinceparameter with that time to get latest subscribed events.If you are running cron job then make sure you are not duplicating or missing some events.