media.setOTVChannel - GiGAGenie-ServiceSDK/UserGuide GitHub Wiki
gigagenie.media.setOTVChannel
API ์ค๋ช
- OTV ์ฑ๋ ๋ณ๊ฒฝ API
- OTV ์ฑ๋์ ๋ณ๊ฒฝํจ
- Full Window App ์์ ํธ์ถํ ๊ฒฝ์ฐ OTV๋ฅผ ํด๋น ์ฑ๋๋ก ์คํ๋๋ฉฐ ํ์ฌ ์คํ์ค์ธ ์ฑ์ ์ข
๋ฃ๋จ
- OTV ์คํ ์ค Overlay Window App ์์ ํด๋น API ํธ์ถ์ OTV๋ฅผ ํด๋น ์ฑ๋๋ก ๋ณ๊ฒฝํจ
API ๊ตฌ์กฐ
- function setOTVChannel(options,callback)
options
channelNo
: (Mandatory, Int) ๋ณ๊ฒฝํ ์ฑ๋ ๋ฒํธ
result_cd
200
: ์ฑ๊ณต
500
: ์์คํ
Error
extra
์ฌ์ฉ ์์
// callback ๋ฐฉ์
var options = {};
options.channelNo = 15;
gigagenie.media.setOTVChannel(options, function (result_cd, result_msg, extra) {
if (result_cd === 200) {
console.log('Success');
};
});