Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/mini-apps/core-concepts/authentication.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 10 additions & 0 deletions docs/mini-apps/core-concepts/navigation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
<a href="cbwallet://miniapp?url=https://yourminiapp.com">
Launch Mini App
</a>
```