-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (72 loc) · 1.98 KB
/
Copy pathindex.html
File metadata and controls
74 lines (72 loc) · 1.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome to SenseCraft!</title>
<style>
body {
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background: linear-gradient(135deg, #ff7e5f, #feb47b);
font-family: 'Arial', sans-serif;
color: #fff;
}
.welcome-container {
text-align: center;
padding: 20px;
background: rgba(0, 0, 0, 0.5);
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
h1 {
font-size: 3em;
margin: 0;
}
#message {
margin-top: 20px;
font-size: 1.2em;
word-break: break-all;
}
</style>
</head>
<body>
<div class="welcome-container">
<h1>Welcome to SenseCraft!</h1>
<div id="message">Processing...</div>
</div>
<script>
// Extract the authorization code from the URL
const urlParams = new URLSearchParams(window.location.search);
const code = urlParams.get('code');
if (code) {
document.getElementById('message').innerText = 'Authorization code received: ' + code;
// Exchange the authorization code for an access token
fetch('https://sensecraft-node-red-oauth.sensecraft.ai/exchange-token', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({ code: code })
})
.then(response => response.json())
.then(data => {
if (data.access_token) {
document.getElementById('message').innerText = 'Access token received: ' + data.access_token;
} else {
document.getElementById('message').innerText = 'Failed to get access token';
}
})
.catch(error => {
document.getElementById('message').innerText = 'Error: ' + error.message;
});
} else {
document.getElementById('message').innerText = 'No authorization code found';
}
</script>
</body>
</html>