2~3文字の形容詞と名詞を組み合わせてランダムニックネームを生成します。
__ __ __ __ __
📝 APIの使い方を見る
function getRandomNickname() {
$.ajax({
cache : false,
url : 'https://www.rivestsoft.com/nickname/getRandomNickname.ajax',
type : 'POST',
data : { lang: 'ja' },
success : function(res) {
$('#randomNickName').text(res.data);
},
error : function(xhr, status) {
alert('ERROR : ' + xhr + ' : ' + status);
}
});
}