跳过主要内容
返回到插件
@capgo/native-purchases
教程
由 github.com/Cap-go

原生购买

使用简单的 API 实现原生应用内购买、订阅和 iOS StoreKit 承诺付款计划

指南

原生购买教程

使用@capgo/native-purchases

内购变得简单。

安装

bun add @capgo/native-purchases
bunx cap sync

此插件暴露的内容

  • restorePurchases - 恢复用户的之前购买记录并将其与任何使用相同的 appUserIDs 的用户链接到一起。
  • getAppTransaction - 获取 App 交易信息,提供有关用户最初下载或购买应用程序的详细信息。
  • isEntitledToOldBusinessModel - 比较 App 交易中的原始应用程序版本与目标版本,以确定用户是否有权从更早的商业模式中获得特征。
  • getProducts - 加载商店产品元数据,包括支持的iOS订阅定价条款。
  • purchaseProduct - 开始为选定的产品和计费计划启动购买流程。

示例用法

restorePurchases

恢复用户的之前购买信息并将其与使用相同的应用用户ID的任何用户关联。

import { NativePurchases } from '@capgo/native-purchases';

await NativePurchases.restorePurchases();

getAppTransaction

获取应用交易信息,提供有关用户最初下载或购买应用的详细信息。

import { NativePurchases } from '@capgo/native-purchases';

const { appTransaction } = await NativePurchases.getAppTransaction();

// Check if user downloaded before version 2.0.0 (when subscription was added)
if (compareVersions(appTransaction.originalAppVersion, '2.0.0') < 0) {
  // User gets free access - they downloaded before subscriptions
  grantFreeAccess();
}

isEntitledToOldBusinessModel

比较应用交易中的原始应用版本与目标版本,以确定用户是否有权从较早的商业模式中获得特征。

import { NativePurchases } from '@capgo/native-purchases';

// Check if user downloaded before version 2.0.0/build 42 (when subscription was added)
const result = await NativePurchases.isEntitledToOldBusinessModel({
  targetVersion: '2.0.0',
  targetBuildNumber: '42'
});

if (result.isOlderVersion) {
  console.log(`User downloaded v${result.originalAppVersion}, granting free access`);
  grantFreeAccess();
}

purchaseProduct

开始为给定产品启动购买流程。对于Android订阅,传递Google Play的基本计划ID作为 planIdentifier对于支持的iOS订阅,传递 billingPlanType: 'monthly'.

import { NativePurchases, PURCHASE_TYPE } from '@capgo/native-purchases';

await NativePurchases.purchaseProduct({
  productIdentifier: 'com.example.premium.monthly',
  planIdentifier: 'monthly-plan',
  productType: PURCHASE_TYPE.SUBS,
});

支持的iOS版本上,StoreKit可以通过

在购买前在您的付费墙上显示这些条款: pricingTerms全局参考

import { NativePurchases, PURCHASE_TYPE } from '@capgo/native-purchases';

const { products } = await NativePurchases.getProducts({
  productIdentifiers: ['com.example.premium.yearly'],
  productType: PURCHASE_TYPE.SUBS,
});

const yearlyProduct = products.find(
  (product) => product.identifier === 'com.example.premium.yearly',
);
const monthlyCommitment = yearlyProduct?.pricingTerms?.find(
  (term) => term.billingPlanType === 'monthly',
);

if (yearlyProduct && monthlyCommitment) {
  console.log('Monthly price:', monthlyCommitment.billingDisplayPrice);
  console.log('Total commitment:', monthlyCommitment.commitmentInfo?.priceString);

  const transaction = await NativePurchases.purchaseProduct({
    productIdentifier: yearlyProduct.identifier,
    productType: PURCHASE_TYPE.SUBS,
    billingPlanType: 'monthly',
  });

  console.log('Billing plan:', transaction.billingPlanType);
  console.log('Commitment ends:', transaction.commitmentInfo?.expirationDate);
}

- __CAPGO_KEEP_0__