Use deeplinking
Generate deep links to open the Self mobile app directly
When to Use Deep Links
Basic Usage
import { getUniversalLink } from '@selfxyz/core';
import { SelfAppBuilder } from '@selfxyz/qrcode';
// Create your SelfApp (same as for QR codes)
const selfApp = new SelfAppBuilder({
// ... your configuration
}).build();
// Generate the deep link
const deeplink = getUniversalLink(selfApp);
// Use the deep link
window.open(deeplink, '_blank'); // Opens Self appReturning User to App Automatically
Implementation Examples
Simple Button
Mobile-First Experience
Platform Considerations
Mobile Browsers
Desktop Browsers
Best Practices
Last updated