How to add a Facebook Event with new Graph API

前端 未结 4 1557
北荒
北荒 2021-02-06 13:11

I am trying to create an event using Facebooks api. (From a django app) Has anyone created an event with the new graph api?

4条回答
  •  伪装坚强ぢ
    2021-02-06 13:25

    There appears to be no documented method for creating an API in the new docs, but you can use the REST interface methods as described here: http://developers.facebook.com/docs/reference/rest/ .

    The big show stopper for me at the moment is the requirement of a user session to run any of the REST interfaces. A lot of my requests to Facebook (Event creations, invites) do not run during an active Facebook user logged in. They need to be created from the Application. I'm not sure as of yet if this is a limitation in the new API or just not implemented in the SDKs.

提交回复
热议问题