Skip to main content
When building Mini Apps, proper link handling is crucial for providing a consistent user experience across different clients. This guide outlines best practices for external navigation and URL interactions.

Core Principles

Use SDK Actions for Cross-Client Compatibility

Always use official SDK functions instead of static URLs. Static URLs can break cross-client compatibility and may leave users unable to complete actions in your Mini App.
Avoid using direct HTML links (<a href="">, <Link href="">) or static URLs in your Mini App. These approaches don’t work consistently across different clients and can create poor user experiences.

External Navigation

Opening External URLs

Use useOpenUrl() to safely open external websites in the client’s in-app browser:
components/ExternalLinks.tsx

Composing Casts

Use useComposeCast() to open the native composer with prefilled content:
components/ShareCast.tsx

Viewing Casts

Use useViewCast() to open a specific cast by its hash:
components/ViewCastButton.tsx

Best Practices

1. Prioritize SDK Actions

Before implementing any navigation or linking functionality:
  1. Check if an official SDK action exists for your use case
  2. Use the SDK action instead of crafting custom URLs
  3. Test across multiple clients to ensure compatibility

2. Handle Unsupported Features Gracefully

When using features that may not be supported in all clients:
App.tsx

3. Avoid Client-Specific URLs

Don’t hardcode URLs specific to particular clients (like Warpcast URLs). Instead, use SDK actions that work across all supported clients.

Common Patterns

NavigationComponent.tsx

Conditional Navigation

ConditionalNavigation.tsx

Migration Guide

If your Mini App currently uses static URLs or direct links, update them using these patterns:

Future Considerations

While deeplinks are not currently supported, they are on the roadmap. When they become available, this documentation will be updated with specific implementation guidance. In the meantime, continue using SDK actions for the most reliable cross-client experience.