
Originally Posted by
Ali.N
What do you mean by "rate" ? I don't think it is possible to give a rating/note/mark to a POI in the Nokia Places (REST) API
If you want to add ratings to POIs in your application, I guess you would have to implement the system/infrastructure for it yourself.
I would suggest you to check what has been suggested beforehand, basically, if you would check the API, at and the reviews part of it, you could see the place reply data having:
Code:
"reviews": {
"available": 18,
"next": "http://...",
"create": {
"title": "Add a review",
"href": "http://...",
"type": "urn:nlp-types:reviews-post",
"method": "POST"
},
i.e. you would look into the "create" object there, and if it is available, you indeed should be able to submit reviews, i.e, rate it.