저는 현재 게임과 관련된 클랜 커뮤니티를 운영하고 있는데, 몇몇 개발자들이 자체적으로 API를 만들어서 그 클랜에 누가 속해있는지 닉네임을 리스트로 볼 수 있게 해줬습니다.

 

http://sc-api.com/?api_source=cache&start_date=&end_date=&system=organizations&action=organization_members&target_id=TIGRIS&start_page=1&end_page=100&format=pretty_json

 

해당 링크에 들어가면, 제 클랜에 속해있는 사람들의 닉네임 ( Handel 이라고 적힌 부분 ) 과 계급 ( Stars 라고 적힌 부분 ) 을 확인할수가 있습니다만, 이걸 XE 홈페이지에 위젯 ( 혹은 외부페이지 ) 으로 좀 꾸며서 보여주는 방법이 없을까요?

 

예제 ) 위젯에서 특별한 칸을 만들어서, 해당 칸에서만 인원 계급과 닉네임을 표시.

  • profile
    jQuery.ajax({
    url: 'http://sc-api.com/?api_source=cache&start_date=&end_date=&system=organizations&action=organization_members&target_id=TIGRIS&start_page=1&end_page=100&format=pretty_json',
    dataType: 'json',
    success: function ( result ) {
    console.log ( result );
    }
    });

    이런식으로 자바스크립트에서 데이터를 얻어올 수 있습니다.
  • profile profile
    순간 익숙한 닉네임이다 싶었는데, PJAX보드 개발자분이시군요 ㅋㅋㅋㅋ. 음,, 자바스크립트라... 알려주셔서 감사합니다! 코드 응용방법을 더 찾아봐야겠군요.
  • profile profile
    궁금하신거 있음 말씀주세요 도와드릴게요^^