Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I use the graph api to add comments to ratings?

It is possible to grab the comments data with the {page-id}/ratings call. The resultset of that call shows all rating entries without ids. Is there a way to add comments to those ratings? The documentation says that this should be possible if the story is generated, but I don't have a plan to generate that story.

like image 942
Sascha Avatar asked Feb 20 '14 10:02

Sascha


1 Answers

Ok, found it.

you need to call {page-id}/ratings?fields=open_graph_story to get a list of all public reviews, including the object id. With these objects you can add comments: (POST) {object-id}/comments

like image 139
Sascha Avatar answered Sep 17 '22 23:09

Sascha