Skip to content

media.onOTVWebAppMsg

ServiceSDK edited this page Jan 11, 2021 · 3 revisions

gigagenie.media.onOTVWebAppMsg

API 설명

  • OTV WebApp 메시지 수신 API
  • OTV WebApp에서 메시지를 수신함
  • onOTVWebAppMsg 의 콜백함수를 구현해야 함

API 구조

  • function callback(extra)
  • extra
    • uAppId: 메시지를 전달한 OTV WebApp의 appid
    • message: 전달 메시지(OTV WebApp Message 정의 에 정의됨)
    • args: 메시지 추가 데이터

사용 예시

// callback 방식
gigagenie.media.onOTVWebAppMsg = function (extra) {
    console.log("appid: " + extra.uAppId);
    console.log("message: " + extra.message);
    console.log("args: " + extra.args);
};

UserGuide

Clone this wiki locally