Hi, I'm working on an android app and using django as the backend. I 
created an api using django rest framework and everything is fine so far. I 
want to add commenting to my main object. i.e - lets call it a "Post". I 
want each post to have a set of comments associated with it. simple 
comments.one after the other. I'm not looking to do threaded commenting. 
What is the best way I should go about doing this? 

I see apps like Disquis and django-comments-xtd 
<https://django-comments-xtd.readthedocs.org/en/latest/index.html>, but 
they all seem to just use the templating system on the web front end. I 
just want the data in some text/JSON format and send it to android(or any 
other device). i.e [ comments: {id:1,user: User23,comment: I totally agree 
} }

Also, I seen this post: 
http://stackoverflow.com/questions/28369418/struggling-to-get-django-comments-to-work-with-django-rest-framework
 

and wondered should I try still using django.contrib.comments even though 
it's depreciated ? 

I'm using Django verson 1.8.4 

Any advice would be great. Thanks.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/12c52875-c1f1-4465-ade7-37dc5dca75c1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to