this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

More OAuth Doc Tweaks (#1175)

document oauth ClientConfig.SetClientSecret

authored by

David Buchanan and committed by
GitHub
8c31d8b8 543ab112

+5
+5
atproto/auth/oauth/oauth.go
··· 112 112 return config.PrivateKey != nil && config.KeyID != nil 113 113 } 114 114 115 + // Set the secret key used for client assertions (for confidential clients). 116 + // 117 + // The corresponding public key (with matching key ID) must be present in the JWK list referenced by the client metadata document. 118 + // 119 + // Key IDs may be arbitrary strings such as UUIDs, stringified sequence numbers, or human-readable identifiers. 115 120 func (config *ClientConfig) SetClientSecret(priv atcrypto.PrivateKey, keyID string) error { 116 121 switch priv.(type) { 117 122 case *atcrypto.PrivateKeyP256: