Apple 家庭共享
了解如何检查商品是否符合 Apple 家庭共享的条件,以及如何注册一个处理程序,该处理程序会在取消授权时触发,例如家庭成员稍后失去对该共享购买的访问权。
阅读时间1 分钟最后更新于 20 天前
Apple 支持可自动续订的订阅以及非消耗品应用内购的家庭共享。要使用家庭共享,请在 App Store Connect 中为每个商品单独启用它。有关设置说明,请参阅打开应用内购的家庭共享。
家庭共享资格
使用 Apple 商品元数据中的isFamilyShareableProduct.ProductMetadata.GetAppleProductMetadata()bool IsProductFamilyShareable(Product product) { var appleProductMetadata = product.metadata.GetAppleProductMetadata(); return appleProductMetadata?.isFamilyShareable ?? false; }
撤销的权利
您的应用需要处理家庭成员无法访问共享购买的情况。为此,请使用StoreController.AppleStoreExtendedPurchaseServicevoid AddAppleListeners(){ var applePurchaseService = UnityIAPServices.StoreController().AppleStoreExtendedPurchaseService; if (applePurchaseService != null) { applePurchaseService.OnEntitlementRevoked += EntitlementRevokedListener; }}void EntitlementRevokedListener(string productId){ Debug.Log($"Revoked product: {productId}");}