I'm working on an app to post music to the Facebook timeline, but having problems when I POST as recommended in the doc. I use OAuth 2 to successfully get the user's Facebook ID and a valid session_token, but then, when I post this...
POST https://graph.facebook.com/<user_id>/music.listens?song=<song's URL>&expires_in=<seconds>&access_token=<session_token>
I get the following error message back from Facebook:
{\"error\":{\"message\":\"An unexpected error has occurred. Please retry your request later.\",\"type\":\"OAuthException\"
So far...
- I've ruled out invalid and expired tokens.
- I'm requesting (and receiving) multiple permissions, including publish_checkins, publish_stream, user_likes, friends_likes, and create_event.
- I've set up all of my metatags according to the Facbook's OpenGraph music documentation.
At this point, it seems that all of the permissions, tokens, etc. are in order. Are there some Application settings (possibly related to the "og" namespace) that need to be set? Other permissions that need to be requested?