어떻게 자바스크립트에서 유튜브 api를 사용하여 채널 플래카드를 얻습니까?
실시간 서브카운터
<span id="channel_name"></span>
<span id="sub_count"></span>
기능 결과(채널 id){
(채널 id="")
{
경고로 돌아갑니다(채널 ID를 입력하십시오).
}
서류getElementById(채널 id)value=“”;
//for the request
request_data(channel_id);
}기능 요청 데이터 (채널 id)
{
var xhttp=new XMLHttpRequest();
xhttp.onreadystatechange = 함수()
{
if(this.readyState==4&&this.status==200)
{
var output = 이거.responseText;
output=JSON.해석(출력);
서류getElementById(채널 이름).innerHTML= 내보내기.프로젝트 [0].세션 [제목];
서류getElementById(하위 계수).풍격display=“inline”;
if(output.items[0].statistics[“hiddenSubscriberCount”]==true)
{
위문하다.로그(사용자 수가 채널에 의해 숨겨짐);
서류를 반납하다.getElementById(하위 계수).innerHTML= "해당 없음"
}
서류getElementById(하위 계수).innerHTML= 내보내기.프로젝트 [0].통계학['구독 계수'];
}
else if(this.readyState==4)
{
콘솔로 돌아갑니다.로그(JSON.parse(this.responseText) [error][message]);
}
};
xhttp.열기(GET, true),
xhttp.보내기();
시간 초과(요청 데이터, 2500) 설정;
}
Reference
이 문제에 관하여(어떻게 자바스크립트에서 유튜브 api를 사용하여 채널 플래카드를 얻습니까?), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/wallpaperwoo/how-i-get-channel-banner-using-youtube-api-in-javascript-23k0텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)