Я сделал этот код для обнаружения браузера FB In-App на моем веб-сайте: - Мой Я знаю, как добавить перенаправление window.location.href = "http://www.example123website.com";
, если обнаружен браузер FB-In App?
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>App Link</title>
<script language="JavaScript" type="text/JavaScript">
function isFacebookApp() {
var ua = navigator.userAgent || navigator.vendor || window.opera;
window.location.href = "http://www.example123website.com";
return (ua.indexOf("FBAN") > -1) || (ua.indexOf("FBAV") > -1);
}
</script>
</head>
<body>
</body>
</html>