AI-generated Key Takeaways
-
Encrypted OAuth client secrets are used to secure account linking flows for the
AUTH_CODE
grant type. -
The secret is represented in JSON format with an
encryptedClientSecret
field containing the base64-encoded ciphertext and anencryptionKeyVersion
field indicating the encryption key's version.
Information about the encrypted OAuth client secret used in account linking flows (for AUTH_CODE grant type).
JSON representation | |
---|---|
{ "encryptedClientSecret": string, "encryptionKeyVersion": string } |
Fields | |
---|---|
encryptedClientSecret |
Encrypted account linking client secret ciphertext. A base64-encoded string. |
encryptionKeyVersion |
The version of the crypto key used to encrypt the account linking client secret. Note that this field is ignored in push, preview, and version creation flows. |