diff --git a/docs/mini-apps/core-concepts/authentication.mdx b/docs/mini-apps/core-concepts/authentication.mdx index 6857d3cc..1946e9ed 100644 --- a/docs/mini-apps/core-concepts/authentication.mdx +++ b/docs/mini-apps/core-concepts/authentication.mdx @@ -30,7 +30,7 @@ export function App() { async function signIn() { try { - const { token } = await sdk.actions.quickAuth(); + const { token } = await sdk.quickAuth.getToken(); setToken(token); // Use the token to authenticate the user and fetch authenticated user data diff --git a/docs/mini-apps/core-concepts/navigation.mdx b/docs/mini-apps/core-concepts/navigation.mdx index 895d2b02..1c561e22 100644 --- a/docs/mini-apps/core-concepts/navigation.mdx +++ b/docs/mini-apps/core-concepts/navigation.mdx @@ -243,3 +243,13 @@ const ConditionalNavigation = () => { }; ``` +## Launching Mini Apps from External Sources + +### Deeplink Protocol +Use the `cbwallet://miniapp?url=[YOUR_MINI_APP]` to launch your mini app directly from external sources like websites, QR codes, or other applications. + +```HTML + + Launch Mini App + +``` \ No newline at end of file