Android webview showing blank screen after sharing content on facebook wall? I am using javascript sdk to post post

I am using javascript sdk to share content on Facebook wall:

 FB.ui({
          method:'share',
          display: 'touch',
          href: 'www.adarshkr.com',
          redirect_uri:'www.adarshkr.com'
        }, 
        function(response) {
          if (response && !response.error) 
          {
            alert("shared");
            window.reload();
            console.log(response)
          }
          else
          {
            FB.init();
          }
        });

      

Share content it does not accept in the URL that is specified in the redirect_uri. In android web browser after sharing content, I get blank screen. I am not getting a response from the fax book.

+3


source to share





All Articles