I am getting some problems between facebook and the microbrowser that Android>=5 (lollipop) pop ups when (for example... in my case) a user tries to connect to a open wifi, but its connection is limited. The problem I am experiencing is that, when I show the like box:
<div class="facebookOuter">
<div class="facebookInner">
<div id="fb-connect"
class="fb-like"
data-width="245"
data-height="290"
data-href="https://www.facebook.com/THE_PAGE_ID"
data-layout="button_count"
data-action="like"
data-show-faces="true"
data-share="false"
data-border-color="#F4F4F4"
data-layout="box_count">
</div>
</div>
</div>
It shows correctly with other brosers (including the iOS´s minibrowser -for the same case-), but not for the Android´s where never shows if the users like the page (the button allways shows the facebook icon), and clicking it, this event doesn´t work:
FB.Event.subscribe("edge.create",function(url, html_element) {
window.location="redirect.php";
});
The screen goes blank.
Thank you very much.