안드로이드 크롬 브라우저 플레이어 호출시 응답 없는 현상
안드로이드 모바일 크롬 브라우저 업데이트 후 크롬 브라우저에서 시청할 경우 정상 재생되지 않을 수 있습니다. (2023.07)
기존에 정상적으로 시청하다가 업데이트 후 재생이 되지 않는 현상입니다.
정상적으로 앱 호출이 될때도 있고, 전혀 응답이 없이 실행되지 않는 경우도 있습니다.
크롬 브라우저의 오동작으로 Intent URL 호출이 차단 된 경우이며, 개발자 도구에서는 아래와 같이 탐색 차단된 로그를 확인 할 수 있습니다.
Kollus vg-controller 코드를 연동해 해결 된 사례가 다수 있습니다.
아래 코드 적용 후 앱 호출이 정상적으로 되는지 확인 합니다. (참조) - V/G Controller 가이드
vg-controller script를 iframe tag가 포함된 html page 에 포함해 주시고, child 는 kollus 재생링크를 가지는 iframe tag 의 id 값을 넣어주시면 됩니다.
코드 적용후에도 해결이 되지 않는다면 담당 PE에게 문의부탁 드립니다.
<head>
<script src="https://file.kollus.com/vgcontroller/vg-controller-client.latest.min.js"></script>
<script>
window.onload = function() {
try {
var controller = new VgControllerClient({
target_window: document.getElementById('child').contentWindow
});
} catch(e) {
console.error(e);
}
};
</script>
</head>
...
<body>
<iframe id='child' width="640" height="360" src="kollus.src" allow='autoplay' allowfullscreen webkitallowfullscreen mozallowfullscreen> </iframe>
</body>Copyright © CATENOID, lnc. All Rights Reserved.
E-mail. support@catenoid.net | Tel. 1544-4367