puter.auth.getUser()
Returns the user's basic information.
puter.auth.getUser();
None
A promise that resolves to an object containing the user's basic information. The user's basic information is an object with the following properties:
uuid
- The user's UUID. This is a unique identifier that can be used to identify the user.username
- The user's username.email_confirmed
- Whether the user has confirmed their email address.<html>
<body>
<script src="https://js.puter.com/v2/"></script>
<script>
puter.auth.getUser().then(function(user) {
console.log(user);
});
</script>
</body>
</html>