You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-2Lines changed: 10 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -186,14 +186,22 @@ This will poll in a regular interval and only resolve with tokens once the end-u
186
186
187
187
```ts
188
188
let scope!:string// Scope of the access request
189
-
let login_hint!:string// one of login_hint, id_token_hint, or login_hint_token parameters must be provided in CIBA
189
+
/**
190
+
* One of login_hint, id_token_hint, or login_hint_token parameters must be
191
+
* provided in CIBA
192
+
*/
193
+
let login_hint!:string
190
194
191
195
let response =awaitclient.initiateBackchannelAuthentication(config, {
192
196
scope,
193
197
login_hint,
194
198
})
195
199
196
-
// OPTIONAL: If your client is configured with Ping Mode you'd invoke the following after getting the CIBA Ping Callback (its implementation is framework specific and therefore out of scope for openid-client)
200
+
/**
201
+
* OPTIONAL: If your client is configured with Ping Mode you'd invoke the
202
+
* following after getting the CIBA Ping Callback (its implementation is
203
+
* framework specific and therefore out of scope for openid-client)
0 commit comments