How to post an event to facebook using the Graph API

The old Legacy REST API had a function dashboard.publishActivity, but the new Graph API only allows you to send messages to /me/feed.

Is there a way to submit actions using the Graph API?

+3
source share
1 answer

As mentioned at http://developers.facebook.com/blog/post/552/ Facebook "deleted the section that published the News published by developers through the Dashboard API toolbars in the Games toolbar," Therefore, the dashboard.publishActivity function is no longer provides no useful features. My recommendation is to switch to using stream messages or 2.0 requests, as they will provide the same type of distribution you are looking for.

0
source

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


All Articles