I am working on an application that utilizes the ability for users to post comments to the application page. Due to the creative needs and functionality of the application, the call to post the comments is done from Flash. During development, we researched how to successfully post a comment to a page and got everything working. This included:
- Setting up our 'URL to comment on' at the Facebook Comments page (http://developers.facebook.com/docs/reference/plugins/comments/)
- Assembling the POST call in Flash (see details below). This included posting to "https://graph.facebook.com/comments", with POST params for "ids" (the URL to comment on, from #1 above), "message", and "access_token". (This call is directly from Facebook documentation.)
- Deploying the application and testing.
Our application was able to successfully post comments to the application page using the call listed in #2 above, and all was working swimmingly. However, now it no longer works. The same call, with nothing else in our application changed, now gives a "500 internal server error" error, with the following response:
{ "error": { "message": "An unknown error has occurred.", "type": "OAuthException" } }
We've been digging around for solutions and any documentation all day, but have found nothing pointing toward a solution. As I said, we did not change any of our calls or code to cause this to not work.
Anyone have any ideas? Any help is greatly appreciated.