15 lines
412 B
HTML
15 lines
412 B
HTML
|
<!doctype html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<script src="http://play.workadventure.localhost/iframe_api.js"></script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<script>
|
||
|
WA.getCurrentUser().then((user) => {
|
||
|
console.log('id : ', user.id);
|
||
|
console.log('nickName : ', user.nickName);
|
||
|
console.log('tags : ', user.tags);
|
||
|
})
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|