Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to best add a comment/rating system to an android app

I already published an android app where you can see a list of specific objects and detailed informations about them. The list changes every day but some of the objects can appear again. The application is communicating with a PHP server over HTTP and periodically pulls the list of objects.

I now plan to extend the app to make it possible to rate the objects and add a comment similar to how it is done in the android market. I'd like to avoid forcing the user to sign up for an account for being able to comment.

I see two problems:

  • The comment-system could be abused by spammers
  • A comment could be added from another system

So my questions are:

  • How to protect the system from spam?
  • How to authenticate the application with the server?
  • How do I limit the number of comments to one per user and object?
  • What about the androids device id? Is it unique enough to use it as identifier for the user?
  • Which other problems do you see?
like image 722
Tom Avatar asked Nov 11 '10 18:11

Tom


People also ask

How do you comment code on Android?

alt + c then alt + l (holding alt ) for line comment.


1 Answers

2020 Commenting/Rating/Reviews Options

Since Socialize is out, here are a few options you can explore:

  1. Build your own comment/rating implementation. Personally I love reddit and how it handles nested comments and ratings. Here's a library I found that implements it beautifully. Please note you'll need to tie this with a cloud-database. This is based on groupie. Article & implementation. Many ways to do this - https://stackoverflow.com/a/59472206/668240
  2. Disqus - SDK's coming soon to iOS and Android.
  3. BazaarVoice - commercial
  4. Social Networks SDKs like Facebook, Twitter, etc. Personally I dislike this as we'll need to authenticate users with respective networks to use the APIs. It's like we are shipping off users of our apps to social networks. If you don't have a problem with that - then it might be for you

Legacy Option in 2014:

You can try out Socialize SDK which is open-source and a really good SDK for the rating and commenting you are looking for. It already has a well-functioning Commenting system built-in along with a 'like/love' facility and sharing to FB and Twitter. Each 'entity' (object in your case) can have metadata associated with it. So all you have to do is construct/use a rating widget, then send that rating with the entity attached to your object. To display your rating/comment is as simple as retrieving them from Socialize.

Each object (element from your app) should be associated with an entity which has a unique key in the form of a URL - sort of like a primary key to recognize your items. This entity can have meta-data - any data that you can insert on behalf of your object. Once you do that, you can retrieve that metadata any time you want.

I've been using Socialize for around a year now. They've matured over this period and are always aspiring to be the best at what they do.

Look at the Socialize Bar at the bottom. Its can be customized to your needs.

Constitution of India

What's more - Socialize is free.

As for your questions:

  1. There is comment moderation built into the Socialize Web Component where you can filter out anything you feel is out of place.
  2. Socialize allows you to authenticate through Facebook and Twitter.
  3. Limiting to one comment per user can be achieved by using their User and Comments API.
  4. Socialize has both Anonymous authentication as well as Social A/c authentication. I believe you can remove anonymous auth. So that ensure that every user is authenticated before rating/commenting.
like image 62
Ashok Goli Avatar answered Oct 16 '22 09:10

Ashok Goli