I'm trying to make facebook like functionality in Android WebView (project specification does not allow browser opening, or any out of application activity).

So, restrictions are that it has to be done in WebView. I've managed to make it a dialog, and apon user's click like button, it (the WebView) redirects successfully (in the same view) to facebooks login page. After successful authentication, the WebView (in a dialog) is redirected to blank page with facebook header.

Interestingly enough, when user leaves the blank dialog and click again on the like button it works like perfectly (like and unlike) - it somehow keeps authentication active. To resolve the blank page, I've tried/used following:

  • using WebViewClient and shouldOverloadUrlForwarding to keep whole process in same WebView dialog.
  • using WebChromeClient to properly execute JavaScript - without it after login is not possible to like/unlike.
  • tried using setUserAgentString() to simulate other browsers like Chrome or Firefox
  • tried the SSL Error certificate handling (in API level 8) (at WebViewClient)

    @Override public void onReceivedSslError(WebView view, SslErrorHandler handler, SslError error) { handler.proceed(); }

  • using (and all possible combination of these)

    webView.getSettings().setAppCacheEnabled(true); webView.getSettings().setJavaScriptEnabled(true); webView.getSettings().setJavaScriptCanOpenWindowsAutomatically(true);

  • Tried also persisting cookies with CookieSyncManager, CookieManager and manually handling.

All of this was with no result. I really appreciate any help!

link|improve this question

50% accept rate
Hi Can you please share you little code snippet for the mentioned functionaliy " I've managed to make it a dialog, and apon user's click like button, it (the WebView) redirects successfully " – Drax Oct 18 '11 at 10:18
feedback

5 Answers

up vote 3 down vote accepted

To get past the blank page you do this:

 webview.setWebViewClient(new LikeWebviewClient(this));

 private class LikeWebviewClient extends WebViewClient {        
    @Override
    public void onPageFinished(WebView view, String url) {
        Log.d(TAG, "onPageFinished url: " +url);
        // Facebook redirects to this url once a user has logged in, this is a blank page so we override this
        // http://www.facebook.com/connect/connect_to_external_page_widget_loggedin.php?............
        if(url.startsWith("http://www.facebook.com/connect/connect_to_external_page_widget_loggedin.php")){
            String redirectUrl = getFacebookLikeUrl();
            view.loadUrl(redirectUrl);
            return;
        }
        super.onPageFinished(view, url);
    }
}
link|improve this answer
This worked for me. But there's another problem. Normally the webview can save its state and not reload on orientation changes by making use of webView.saveState() and webView.restoreState(), but the solution presented here is kind of a 'double load' thing, and kind of defeats the orientation change save/restore state code. Anyone have a solution/workaround? – Tyler Collier Oct 26 '11 at 6:46
To answer my question, I made use of onConfigurationChanged(). See: stackoverflow.com/questions/1002085/… – Tyler Collier Oct 27 '11 at 0:02
@Blundell- Could you please tell me what getFacebookLikeUrl() returns: is it just the URL that the user intended to like? – Abhijit Dec 27 '11 at 21:11
@Abhijit Yeah it's just the facebook url from their API to 'like' a post. – Blundell Jan 2 at 13:12
could someone please post an example of what getFacebookLikeUrl() returns? I'm totally stumped by what url this is meant to be or where one gets it. – Dr.Dredel Feb 15 at 19:12
feedback

Sounds like an error relating to the refreshing or rendering of the page...

Are you using the facebook-php or something else?

link|improve this answer
Yes, I think it is some kind of redirecting error. It's interesting that same code works like charm in mobile browser (not webview). – Stefan Mar 6 '11 at 14:53
feedback

Try this facebook api for android -> https://github.com/facebook/facebook-android-sdk Good Luck :)

link|improve this answer
Thank you, I've tried it first. You can like everything but facebook pages. – Stefan Mar 9 '11 at 8:40
feedback

I had to work through this almost exact same problem on iPhone. What I had to do was to intercept the request that the webview makes to the 'blank page' you described above, and instead tell the webview to load the like URL.

link|improve this answer
how do you intercept a webview request and redirect it ? – ir2pid Jul 11 '11 at 6:53
@user838355 , see my answer :-) – Blundell Aug 22 '11 at 9:32
feedback

Didn't worked for me:(, but form observing i perceive that wrong redirected link started with

url.startsWith("http://m.facebook.com/a/profile.php?fan&id"))
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.