How to integrate Disqus into an Android app?

I am developing an Android application for a website. The website supports Disqus for comment service. I want to support the same in my application. I got the API from Disqus docs, but it is still unclear how to integrate them into my application. Please help me understand the implementation. Has anyone integrated the Disqus comment service into their Android app?

+4
source share
2 answers

I ran into the same issue as my themes related to the disqus site related to my Android app. I wrote a small walkthrough, if you are interested, I will contact my passage below. Mostly in your Android application, you want to use WebView and use a separate php file that can accept your disqus id.

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

+9
source

Thanks ndgreen. Seeing your idea, I created something else without the need for a PHP file: https://gist.github.com/bichotll/5563926

This script just creates html from a simple function and loads th.

+5
source

Source: https://habr.com/ru/post/1434166/


All Articles