-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
24 lines (24 loc) · 932 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>Тест Api</title>
<script src="dist/api.js"></script>
</head>
<body>
<a href="docs/" target="_blank" rel="noopener">Ссылка на документацию</a>
<p><b>Проверка работы:</b></p>
<p class="output" style="white-space: pre; background: #eee;"></p>
<script type="text/javascript">
PluginApi.getCurrentUser()
.then(user => {
document.querySelector('.output').innerHTML = 'Текущий пользователь\n' + JSON.stringify(user, null, ' ');
})
.catch(err => {
document.querySelector('.output').innerHTML = 'Ошибка при запросе:\n' + err.toString();
});
</script>
</body>
</html>