-
-
Notifications
You must be signed in to change notification settings - Fork 56
/
device_authorization_grant.ts
88 lines (71 loc) · 2.46 KB
/
device_authorization_grant.ts
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
import * as oauth from 'oauth4webapi'
// Prerequisites
let issuer!: URL // Authorization server's Issuer Identifier URL
let algorithm!:
| 'oauth2' /* For .well-known/oauth-authorization-server discovery */
| 'oidc' /* For .well-known/openid-configuration discovery */
| undefined /* Defaults to 'oidc' */
let client_id!: string
// End of prerequisites
const as = await oauth
.discoveryRequest(issuer, { algorithm })
.then((response) => oauth.processDiscoveryResponse(issuer, response))
const client: oauth.Client = { client_id }
const clientAuth = oauth.None()
let device_code: string
let interval: number
let verification_uri: string
let user_code: string
let verification_uri_complete: string | undefined
// Device Authorization Request & Response
{
const parameters = new URLSearchParams()
parameters.set('scope', 'api:read')
const response = await oauth.deviceAuthorizationRequest(as, client, clientAuth, parameters)
const result = await oauth.processDeviceAuthorizationResponse(as, client, response)
console.log('Device Authorization Response', result)
;({ device_code, verification_uri, verification_uri_complete, user_code, interval = 5 } = result)
}
/**
* User gets shown the verification_uri and user_code, or scans a qr code formed from
* verification_uri_complete as input.
*
* User starts authenticating on his other device.
*/
console.table({ verification_uri, verification_uri_complete, user_code })
// Device Authorization Grant Request & Response
let access_token: string
{
let success: oauth.TokenEndpointResponse | undefined = undefined
function wait() {
return new Promise((resolve) => {
setTimeout(resolve, interval * 1000)
})
}
while (success === undefined) {
await wait()
const response = await oauth.deviceCodeGrantRequest(as, client, clientAuth, device_code)
success = await oauth.processDeviceCodeResponse(as, client, response).catch((err) => {
if (err instanceof oauth.ResponseBodyError) {
switch (err.error) {
case 'slow_down':
interval += 5
case 'authorization_pending':
return undefined
}
}
throw err
})
}
;({ access_token } = success)
console.log('Access Token Response', success)
}
// Protected Resource Request
{
const response = await oauth.protectedResourceRequest(
access_token,
'GET',
new URL('https://rs.example.com/api'),
)
console.log('Protected Resource Response', await response.json())
}