-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (38 loc) · 1.28 KB
/
Copy pathindex.html
File metadata and controls
38 lines (38 loc) · 1.28 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>BenOS — OAuth callback pages</title>
<style>
:root { color-scheme: light dark; }
body {
font: 15px/1.6 ui-sans-serif, -apple-system, "Segoe UI", system-ui, sans-serif;
margin: 0; padding: 2.5rem 1.25rem; display: flex; justify-content: center;
background: #fbfbfa; color: #1a1a18;
}
main { width: 100%; max-width: 34rem; }
h1 { font-size: 1.15rem; margin: 0 0 .5rem; letter-spacing: -.01em; }
code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .88em; }
a { color: inherit; }
@media (prefers-color-scheme: dark) {
body { background: #17171a; color: #e8e8e4; }
}
</style>
</head>
<body>
<main>
<h1>BenOS OAuth callback pages</h1>
<p>
Static redirect targets for BenOS connectors whose OAuth provider refuses
loopback redirect URIs. Each page reads the authorization code out of its own
query string and displays it for copying into the local CLI. No secrets are
held here and nothing is transmitted — the token exchange happens on the
user's own machine.
</p>
<ul>
<li><a href="./withings/">/withings/</a> — Withings Health Data API</li>
</ul>
</main>
</body>
</html>