* Applies public client authentication (RFC 6749 Section 2.1)
(clientId: string, params: URLSearchParams)
| 362 | * Applies public client authentication (RFC 6749 Section 2.1) |
| 363 | */ |
| 364 | function applyPublicAuth(clientId: string, params: URLSearchParams): void { |
| 365 | params.set('client_id', clientId); |
| 366 | } |
| 367 | |
| 368 | /** |
| 369 | * Parses an OAuth error response from a string or Response object. |
no outgoing calls
no test coverage detected
searching dependent graphs…