Reputation: 3357
My question is: how can I use the graph api to let the logged in user attend an event?
In another question I saw a solution to this: doing a POST request to graph.facebook.com/{eventid}/attending, but Facebook's documentation doesn't say anything about how to let the user attend an event.
Is this even possible?
Upvotes: 0
Views: 406
Reputation: 3190
As of April 24, 2018, this is not possible since you can no longer perform POST
operations on the attending
, maybe
, interested
, and declined
edges of the Graph API.
See: Breaking Changes
Upvotes: 1