I've been able to successfully create a Page 'Note' object via the Graph API, however can't seem to get the delete working.
I've been attempting to delete the note by issuing a HTTP DELETE to:
https://graph.facebook.com/[NOTE_ID]?access_token=[PAGE_ACCESS_TOKEN]
Where:
- [NOTE_ID] is the 'story_fbid' of the page note
- [PAGE_ACCESS_TOKEN] is the page-level access token
The error I get back from the Graph API is:
{"error":{"message":"An unexpected error has occurred. Please retry your request later.","type":"OAuthException","code":2}}
Noting that the documentation (http://developers.facebook.com/docs/reference/api/page) discusses creating page notes, but not deleting them. Perhaps this isn't possible ?