Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've got an awesome fan page on Facebook, used by my company for keeping customers in touch!

Now, I know how to post to the wall via Graph API and doing some other things.

I wonder if I can post to the Reviews area's wall: do you know what I mean?

Just below the profile pic, there's a little menu: the wall, informations, and the typical Facebook pages' "tabs".

The "Reviews" tab is useful for accepting feedbacks from customers... What I'd like to do is automatically post the feedback/comments my customers leave on my website to this page-tab.

share|improve this question

2 Answers

up vote 0 down vote accepted

As far as I know this isn't possible. You'd probably need to write your own "Reviews" app and add that functionality.

share|improve this answer

You can access the reviews from the API via https://graph.facebook.com/appId/reviews but you cannot post a review from the API. If you try to, you will get:

{
  "error": {
    "message": "Unsupported post request.", 
    "type": "GraphMethodException"
  }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.