2~3글자의 형용사와 명사를 조합해서 랜덤 닉네임을 생성합니다.
				
				
					__ __ __ __ __
				
				
					
				
				
					📝 API 호출 방법 보기
				
function getRandomNickname() {
    $.ajax({
        cache : false,
        url : 'https://www.rivestsoft.com/nickname/getRandomNickname.ajax',
        type : 'POST',
        data : { lang: 'ko' },
        success : function(res) {
            $('#randomNickName').text(res.data);
        },
        error : function(xhr, status) {
            alert('ERROR : ' + xhr + ' : ' + status);
        }
    });
}