[트위치][Twitch] 카테고리 목록 추출 1.개요 스트리머 방송 정보 및 채널 아이디 추출 중 번거로워 만들게되었음. 2. 방법 let data= document.querySelectorAll("p[data-a-target=preview-card-channel-link]"); let newArray = new Array(); for (let i=0; i< data.length; i++ ) { newArray.push(data[i].innerHTML); } newArray Programming/기본 (Baisc) 2023.02.27
[트위치][NightBot][Twitch] 채팅 로그 수집 1. 개요 채팅 수집할 일이 생겨서 보던 중 해외에서도 다들 채팅 데이터가 필요하다고 아우성이다. 찾다 보니 공식으로 제공하지 않아 다음과 같이 제작한다 . 2. 채팅 let data = new Array(); $("#DataTables_Table_0 tbody tr").each(function(idx,item) { data.push($(item).html()); }); for ( let i=0; i{ $(".paginate_button.next").click(); $("#DataTables_Table_0 tbody tr").each(function(idx,item) { data.push($(item).html()); }); },3000*i); } Programming/기본 (Baisc) 2023.01.30
[Javascript][자바스크립트][Twitch] Twitch Iframe 방송 채팅 및 영상 동시 1. 개요 지인 부탁으로 방송 + 채팅을 동시에 할 수 없겠냐라는 문의를 받고 제작하게 되었다. 2. 소스 Programming/기본 (Baisc) 2022.06.21