mirror of
https://github.com/zitadel/zitadel.git
synced 2025-06-14 07:18:30 +00:00

* docs: remove embedded content from rendered site * integrations applications * Apply suggestions from code review Co-authored-by: Fabi <38692350+hifabienne@users.noreply.github.com> --------- Co-authored-by: Fabi <38692350+hifabienne@users.noreply.github.com>
19 lines
552 B
Plaintext
19 lines
552 B
Plaintext
import ThemedImage from "@theme/ThemedImage";
|
|
|
|
export default function GenerateKey(props) {
|
|
return props.appType == "api" || props.authType == "jwt" ? (
|
|
<div>
|
|
<p>
|
|
After you successfully created your application with authentication type
|
|
JWT your can create keys in the Configuration section and Keys Card of
|
|
the app details like following image shows:
|
|
</p>
|
|
<img
|
|
width="400px"
|
|
alt="Generate key"
|
|
src="/docs/img/guides/application/generate-key.png"
|
|
/>
|
|
</div>
|
|
) : null;
|
|
}
|