Is it possible to attend the event programmatically using the Facebook C # SDK?

Is it possible to attend the event programmatically using the Facebook C # SDK if I have an access token?

+4
source share
2 answers

Yes, you can send a GET request to this URL

https://graph.facebook.com/EVENT_ID/{attending|maybe|declined}

along with your access token.


Facebook Doc Link: http://developers.facebook.com/docs/reference/api/event/
+5
source

Yes, right .. You need to send a request to the URL https://graph.facebook.com/EVENT_ID/attending

+4
source

Source: https://habr.com/ru/post/1343259/


All Articles