Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to integrate Disqus in my Android App?

I am developing an android app for a web-site. The web-site supports Disqus for commenting service. I want to support the same in my application. I got APIs from Disqus docs but still I am not clear how to integrate them in my application. Please help me understand the implementation. Is anyone integrated Disqus comment service into their Android App?

like image 802
Prati Avatar asked Sep 14 '12 10:09

Prati


2 Answers

I ran into the same problem with having my web site disqus threads linked up with my android app. I wrote a little walkthrough if you are interested I will link to my walkthrough below. Basically in your android app you want to use a WebView and use a separate php file that can take your disqus identifier.

http://globeotter.com/blog/disqus-android-code/

like image 98
ndgreen Avatar answered Oct 19 '22 02:10

ndgreen


Thanks ndgreen. Seeing your idea I created a something different without a PHP file necesity: https://gist.github.com/bichotll/5563926

This script just create the html from a simple function and load th.

like image 38
bichotll Avatar answered Oct 19 '22 03:10

bichotll