OpenGraph Music music.listens returns an error

Following the specifications here http://developers.facebook.com/docs/opengraph/music/

When I post: POST https://graph.facebook.com/me/music.listens?song=[song url]

The answer is invariably:

{"error": {"type": "OAuthException", "message": "An unknown error has occurred". }}

+6
source share
4 answers

The error report was listed here: https://developers.facebook.com/bugs/124491790988961

According to the developer in the comments section, open music in the form of a graph is not yet available to the public developers.

+3
source

The Facebook developer answered about this here: Opengraph and music.listen

It seems the best option is to create your own β€œplay music” actions, as Facebook does not seem to allow POST to music.listens in the foreseeable future ...: /

+1
source

To add answers to Kristofer and Garthex, inline actions are not available. However, you can send a request if you think you have broadcast rights.

Here is a document for inline actions: https://developers.facebook.com/docs/opengraph/actions/builtin/

Alternatively, you can use custom actions such as "User plays sound."

+1
source

Make sure that the user has requested permission to publish publish_actions and that the user is the developer of the application (since the open schedule actions are still in beta testing).

0
source

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


All Articles