mffap 0e812cf0f4
docs: remove embedded content from rendered site (#5183)
* 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>
2023-02-13 15:20:04 +07:00

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;
}