如何在我的Android应用程序中集成Disqus?

时间:2012-09-14 10:38:48

标签: android comments disqus

我正在开发一个网站的Android应用程序。该网站支持Disqus评论服务。我想在我的应用程序中支持相同的功能。我从Disqus文档获得了API,但我还不清楚如何将它们集成到我的应用程序中。请帮我理解实施。有人将Disqus评论服务整合到他们的Android应用程序中吗?

3 个答案:

答案 0 :(得分:10)

我遇到了同样的问题,我的网站disqus线程与我的Android应用程序链接。如果您有兴趣,我会写一些演练,我将链接到下面的演练。基本上在你的Android应用程序中,你想使用WebView并使用一个单独的php文件,它可以获取你的disqus标识符。

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

答案 1 :(得分:5)

感谢ndgreen。看到你的想法我创建了一个不同的PHP文件必需的东西: https://gist.github.com/bichotll/5563926

这个脚本只是从一个简单的函数创建html并加载。

答案 2 :(得分:0)

您可以使用此代码: 谷歌登录正在工作。 我还没有测试 Facebook。

static void setupDisqus(Context context, WebView disqus) {
    try {
        String URL = ""; // URL must be unique like identifier! Because Disqus, is using the url instead of identifier.
        String identifier = "";
        String shortName = "";
        String commentsUri = "https://captainsp.github.io/disqus_comments_dark_gray.html?" + "shortname=" + shortName +
                "&url=" + URLEncoder.encode(URL, "UTF-8") +
                "&title=" + URLEncoder.encode("Comments", "UTF-8") +
                "&identifier=" + URLEncoder.encode(identifier, "UTF-8");

        /*
         * You can use this colors in my Github Account:
         * disqus_comments_dark_gray.html
         * disqus_comments.html
         * disqus_comments_dark.html
         *
         *
         */

        disqus.setWebViewClient(new WebViewClient() {
            @Override
            public void onReceivedError(WebView view, WebResourceRequest request, WebResourceError error) {
                new Handler().postDelayed(disqus::reload, 2000); // Reload Comments
                super.onReceivedError(view, request, error);
            }
        });
        CookieManager.getInstance().setAcceptThirdPartyCookies(disqus, true); // Accept Cookies to login (If you forget this part users need to login every single time)
        disqus.getSettings().setJavaScriptCanOpenWindowsAutomatically(true); // Google / Facebook Login
        disqus.getSettings().setSupportMultipleWindows(true); // Google / Facebook Login
        CookieManager.getInstance().setAcceptCookie(true); // Accept Cookies to login 2
        disqus.setWebChromeClient(new WebChromeClient() {
            @SuppressLint("SetJavaScriptEnabled")
            @Override
            public boolean onCreateWindow(WebView view, boolean isDialog, boolean isUserGesture, Message resultMsg) {
                WebView newWebView = new WebView(context); // Create new WebView
                WebSettings webSettings = newWebView.getSettings();
                webSettings.setJavaScriptEnabled(true);
                webSettings.setUserAgentString(webSettings.getUserAgentString().replace("; wv", "")); // Hide WebView User Agent
                final Dialog dialog = new Dialog(context); // Create Dialog
                dialog.setContentView(newWebView);
                dialog.show();
                CookieManager.getInstance().acceptThirdPartyCookies(newWebView);
                newWebView.setWebViewClient(new WebViewClient());

                newWebView.setWebChromeClient(new WebChromeClient() {
                    @Override
                    public void onCloseWindow(WebView window) {
                        dialog.dismiss(); // Close the dialog after logged in
                    }
                });

                ((WebView.WebViewTransport) resultMsg.obj).setWebView(newWebView);
                resultMsg.sendToTarget();

                return true;
            }
        });
        disqus.getSettings().setJavaScriptEnabled(true); // Enable JavaScript
        disqus.getSettings().setAppCacheEnabled(true);
        disqus.getSettings().setDomStorageEnabled(true);
        disqus.loadUrl(commentsUri);
    } catch (Exception e) {
        e.printStackTrace();
    }

}

首先创建一个新的 WebView 或使用 findViewById(R.id.webView); 找到它 然后将 Disqus 设置到您的 WebView:setupDisqus(this,webView);

更多信息:https://help.disqus.com/en/articles/1717165-javascript-embed-in-native-apps