Skip to content
Discussion options

You must be logged in to vote

Great news! 🎉

This functionality has been implemented in PR #3136: feat(ios): add ExternalPurchaseCustomLink API support (iOS 18.1+)

The PR adds three new APIs for the ExternalPurchaseCustomLink feature:

New APIs

  1. isEligibleForExternalPurchaseCustomLinkIOS() - Check if app is eligible

    const isEligible = await isEligibleForExternalPurchaseCustomLinkIOS();
  2. getExternalPurchaseCustomLinkTokenIOS(tokenType) - Get token for Apple reporting

    const result = await getExternalPurchaseCustomLinkTokenIOS('acquisition');
    // or 'services' for existing customers
    if (result.token) {
      // Report to Apple's External Purchase Server API
    }
  3. showExternalPurchaseCustomLinkNoticeIOS(noticeType) - Show disclo…

Replies: 2 comments 1 reply

This comment was marked as off-topic.

@T-Matteo

This comment was marked as off-topic.

Comment options

You must be logged in to vote
0 replies
Answer selected by T-Matteo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
🍗 enhancement New feature or request 🙏 help wanted Extra attention is needed 📱 iOS Related to iOS
2 participants