Skip to main content

useIAP Hook

The useIAP hook is the main interface for interacting with in-app purchases in React Native IAP. It provides a comprehensive API for managing purchases, subscriptions, and error handling.

Import

import { useIAP } from 'react-native-iap'

Important: Hook Behavior

The useIAP hook follows React Hooks conventions and differs from the underlying native module methods:

  • Automatic Connection Management: The hook automatically calls initConnection when the component mounts and endConnection when it unmounts.
  • State Management: Hook methods like fetchProducts, requestPurchase, etc., return Promise<void> instead of returning data directly. They update the internal state which you access through the returned properties.
  • Product Caching: Product caching is handled automatically by the native module - you don't need to implement caching at the application level.

Basic Usage

import { useEffect } from 'react'
import { View, Text, Button, Alert } from 'react-native'
import { useIAP, requestPurchase, type PurchaseError } from 'react-native-iap'

// Product/Subscription IDs from your store configuration
const PRODUCT_IDS = ['com.example.premium', 'com.example.coins100']
const SUBSCRIPTION_IDS = ['com.example.monthly', 'com.example.yearly']

export default function MyStore() {
const {
connected,
products,
subscriptions,
availablePurchases,
activeSubscriptions,
fetchProducts,
finishTransaction,
getAvailablePurchases,
getActiveSubscriptions,
} = useIAP({
onPurchaseSuccess: async (purchase) => {
console.log('Purchase successful:', purchase)

// IMPORTANT: Validate receipt on your server here
// const isValid = await validateReceiptOnServer(purchase.transactionReceipt);
// if (!isValid) {
// Alert.alert('Error', 'Receipt validation failed');
// return;
// }

// Grant purchase to user
Alert.alert('Success', `Purchased: ${purchase.productId}`)

// Finish the transaction (required)
await finishTransaction({
purchase,
isConsumable: true, // Set based on your product type
})
},
onPurchaseError: (error: PurchaseError) => {
console.error('Purchase failed:', error)

if (error.code === 'E_USER_CANCELLED') {
// User cancelled - no action needed
return
}

Alert.alert('Purchase Failed', error.message)
},
})

// Load products when connected
useEffect(() => {
if (connected) {
// fetchProducts is event-based, not promise-based
// Results will be available in 'products' and 'subscriptions' states
fetchProducts({ skus: PRODUCT_IDS, type: 'inapp' })
fetchProducts({ skus: SUBSCRIPTION_IDS, type: 'subs' })

// Check for active subscriptions
getActiveSubscriptions()

// Load available purchases for restoration
getAvailablePurchases()
}
}, [connected, fetchProducts, getActiveSubscriptions, getAvailablePurchases])

// Handle purchase
const handlePurchase = async (productId: string, isSubscription: boolean) => {
try {
// Platform-specific API (v14.0.0-rc+) - no Platform.OS checks needed!
await requestPurchase({
request: {
ios: {
sku: productId,
},
android: {
skus: [productId],
// For subscriptions, you may need to add subscription offers
},
},
type: isSubscription ? 'subs' : 'inapp',
})
// Note: Result comes through onPurchaseSuccess/onPurchaseError callbacks
} catch (error) {
console.error('Request purchase failed:', error)
}
}

return (
<View>
<Text>Store: {connected ? '✅ Connected' : '⌛ Connecting...'}</Text>

{/* Products */}
<Text>Products:</Text>
{products.map((product) => (
<View key={product.id}>
<Text>
{product.title} - {product.displayPrice}
</Text>
<Button
title="Buy"
onPress={() => handlePurchase(product.id, false)}
/>
</View>
))}

{/* Subscriptions */}
<Text>Subscriptions:</Text>
{subscriptions.map((subscription) => (
<View key={subscription.id}>
<Text>
{subscription.title} - {subscription.displayPrice}
</Text>
<Button
title="Subscribe"
onPress={() => handlePurchase(subscription.id, true)}
disabled={activeSubscriptions.some(
(sub) => sub.productId === subscription.id
)}
/>
</View>
))}
</View>
)
}

Configuration Options

useIAP(options)

ParameterTypeRequiredDescription
optionsUseIAPOptionsNoConfiguration object

UseIAPOptions

interface UseIAPOptions {
onPurchaseSuccess?: (purchase: Purchase) => void
onPurchaseError?: (error: PurchaseError) => void
onSyncError?: (error: Error) => void
autoFinishTransactions?: boolean // Default: true
}

Configuration Properties

onPurchaseSuccess

  • Type: (purchase: Purchase) => void

  • Description: Called when a purchase completes successfully

  • Example:

    onPurchaseSuccess: (purchase) => {
    // Grant user access to purchased content
    unlockFeature(purchase.productId)
    }

onPurchaseError

  • Type: (error: PurchaseError) => void

  • Description: Called when a purchase fails

  • Example:

    onPurchaseError: (error) => {
    if (error.code !== ErrorCode.E_USER_CANCELLED) {
    Alert.alert('Purchase Failed', error.message)
    }
    }

onSyncError

  • Type: (error: Error) => void

  • Description: Called when there's an error syncing with the store

  • Example:

    onSyncError: (error) => {
    console.warn('Store sync error:', error.message)
    }

autoFinishTransactions

  • Type: boolean
  • Default: true
  • Description: Whether to automatically finish transactions after successful purchases

Return Values

State Properties

connected

  • Type: boolean

  • Description: Whether the IAP service is connected and ready

  • Example:

    if (connected) {
    // Safe to make IAP calls
    fetchProducts({ skus: ['product.id'], type: 'inapp' })
    }

products

  • Type: Product[]

  • Description: Array of available products

  • Example:

    products.map((product) => <ProductItem key={product.id} product={product} />)

subscriptions

  • Type: SubscriptionProduct[]

  • Description: Array of available subscription products

  • Example:

    subscriptions.map((subscription) => (
    <SubscriptionItem key={subscription.id} subscription={subscription} />
    ))

currentPurchase

  • Type: Purchase | null

  • Description: Currently active purchase (if any)

  • Example:

    useEffect(() => {
    if (currentPurchase) {
    processPurchase(currentPurchase)
    }
    }, [currentPurchase])

currentPurchaseError

  • Type: PurchaseError | null

  • Description: Current purchase error (if any)

  • Example:

    useEffect(() => {
    if (currentPurchaseError) {
    handlePurchaseError(currentPurchaseError)
    }
    }, [currentPurchaseError])

purchaseHistories

  • Type: ProductPurchase[]

  • Description: Array of purchase history items

  • Example:

    purchaseHistories.map((purchase) => (
    <PurchaseHistoryItem key={purchase.transactionId} purchase={purchase} />
    ))

availablePurchases

  • Type: ProductPurchase[]

  • Description: Array of available purchases (restorable items)

  • Example:

    availablePurchases.map((purchase) => (
    <RestorableItem key={purchase.transactionId} purchase={purchase} />
    ))

promotedProductIOS

  • Type: Product | undefined

  • Description: The promoted product details (iOS only)

  • Example:

    useEffect(() => {
    if (promotedProductIOS) {
    // Handle promoted product
    handlePromotedProduct(promotedProductIOS)
    }
    }, [promotedProductIOS])

Methods

fetchProducts

  • Type: (params: RequestProductsParams) => Promise<void>

  • Description: Fetch products or subscriptions from the store and update the products or subscriptions state

  • Parameters:

    • params: Object containing:
      • skus: Array of product/subscription IDs to fetch
      • type: Product type - either 'inapp' for products or 'subs' for subscriptions
  • Returns: Promise<void> - The fetched products are available in the products or subscriptions state properties

  • Example:

    // Fetch in-app products
    const fetchProducts = async () => {
    try {
    const products = await fetchProducts({
    skus: ['com.app.premium', 'com.app.coins_100'],
    type: 'inapp',
    })
    console.log('Fetched products:', products)
    } catch (error) {
    console.error('Failed to fetch products:', error)
    }
    }

    // Fetch subscriptions
    const fetchSubscriptions = async () => {
    try {
    const subs = await fetchProducts({
    skus: ['com.app.premium_monthly', 'com.app.premium_yearly'],
    type: 'subs',
    })
    console.log('Fetched subscriptions:', subs)
    } catch (error) {
    console.error('Failed to fetch subscriptions:', error)
    }
    }

requestPurchase

  • Type: (request: RequestPurchaseProps) => Promise<void>

  • Description: Initiate a purchase request

  • Parameters:

    • request: Purchase request configuration
  • Example:

    const buyProduct = async (productId: string) => {
    try {
    await requestPurchase({
    request: {
    ios: { sku: productId },
    android: { skus: [productId] },
    },
    })
    } catch (error) {
    console.error('Purchase request failed:', error)
    }
    }

getAvailablePurchases

  • Type: () => Promise<void>

  • Description: Fetch available purchases (restorable items) from the store

  • Example:

    const restorePurchases = async () => {
    try {
    await getAvailablePurchases()
    console.log('Available purchases:', availablePurchases)
    } catch (error) {
    console.error('Failed to fetch available purchases:', error)
    }
    }

validateReceipt

  • Type: (productId: string, params?: ValidationParams) => Promise<ValidationResult>
  • Description: Validate a purchase receipt
  • Parameters:
    • productId: ID of the product to validate
    • params: Required for Android, optional for iOS:
      • packageName (string, Android): Package name of your app
      • productToken (string, Android): Purchase token from the purchase
      • accessToken (string, Android): Optional access token for server validation
      • isSub (boolean, Android): Whether this is a subscription
  • Returns: Promise resolving to validation result

Important Platform Differences:

  • iOS: Only requires the product ID

  • Android: Requires additional parameters (packageName, productToken)

  • Example:

    const validatePurchase = async (productId: string, purchase: any) => {
    try {
    if (Platform.OS === 'ios') {
    // iOS: Simple validation with just product ID
    const result = await validateReceipt(productId)
    return result
    } else if (Platform.OS === 'android') {
    // Android: Requires additional parameters
    const purchaseToken = purchase.purchaseToken
    const packageName = purchase.packageNameAndroid

    if (!purchaseToken || !packageName) {
    throw new Error(
    'Android validation requires packageName and productToken'
    )
    }

    const result = await validateReceipt(productId, {
    packageName,
    productToken: purchaseToken,
    isSub: false, // Set to true for subscriptions
    })
    return result
    }
    } catch (error) {
    console.error('Validation failed:', error)
    throw error
    }
    }

getPromotedProductIOS

  • Type: () => Promise<any | null>

  • Description: Get the promoted product details (iOS only)

  • Example:

    const handlePromotedProduct = async () => {
    const promotedProduct = await getPromotedProductIOS()
    if (promotedProduct) {
    console.log('Promoted product:', promotedProduct)
    // Show custom purchase UI
    }
    }

requestPurchaseOnPromotedProductIOS

  • Type: () => Promise<void>

  • Description: Complete the purchase of a promoted product (iOS only)

  • Note: buyPromotedProductIOS is deprecated, use requestPurchaseOnPromotedProductIOS instead

  • Example:

    const completePurchase = async () => {
    try {
    await requestPurchaseOnPromotedProductIOS()
    console.log('Promoted product purchase completed')
    } catch (error) {
    console.error('Failed to purchase promoted product:', error)
    }
    }

Platform-Specific Usage

iOS Example

const IOSPurchaseExample = () => {
const { connected, products, requestPurchase, validateReceipt } = useIAP({
onPurchaseSuccess: async (purchase) => {
// Validate receipt on iOS
const validation = await validateReceipt(purchase.productId)
if (validation.isValid) {
unlockContent(purchase.productId)
}
},
})

const buyProduct = (product: Product) => {
requestPurchase({
request: {
ios: { sku: product.id },
android: { skus: [product.id] },
},
})
}

return (
<View>
{products
.filter((p) => p.platform === 'ios')
.map((product) => (
<Button
key={product.id}
title={`${product.title} - ${product.displayPrice}`}
onPress={() => buyProduct(product)}
/>
))}
</View>
)
}

Android Example

const AndroidPurchaseExample = () => {
const { connected, products, requestPurchase } = useIAP({
onPurchaseSuccess: (purchase) => {
// Android purchases are automatically validated by Google Play
unlockContent(purchase.productId)
},
})

const buyProduct = (product: Product) => {
requestPurchase({
request: {
ios: { sku: product.id },
android: { skus: [product.id] },
},
})
}

return (
<View>
{products
.filter((p) => p.platform === 'android')
.map((product) => (
<Button
key={product.id}
title={`${product.title} - ${product.oneTimePurchaseOfferDetails?.formattedPrice}`}
onPress={() => buyProduct(product)}
/>
))}
</View>
)
}

Error Handling

The useIAP hook integrates with the centralized error handling system:

const { requestPurchase } = useIAP({
onPurchaseError: (error) => {
// Error is automatically typed as PurchaseError
switch (error.code) {
case ErrorCode.E_USER_CANCELLED:
// Don't show error for user cancellation
break
case ErrorCode.E_NETWORK_ERROR:
Alert.alert('Network Error', 'Please check your connection')
break
case ErrorCode.E_ITEM_UNAVAILABLE:
Alert.alert(
'Item Unavailable',
'This item is not available for purchase'
)
break
default:
Alert.alert('Purchase Failed', error.message)
}
},
})

Best Practices

  1. Always check connected before making IAP calls:

    useEffect(() => {
    if (connected) {
    fetchProducts({ skus: productIds, type: 'inapp' })
    }
    }, [connected])
  2. Handle loading states:

    const [loading, setLoading] = useState(false)

    const buyProduct = async (productId: string) => {
    setLoading(true)
    try {
    await requestPurchase({
    request: {
    ios: { sku: productId },
    android: { skus: [productId] },
    },
    })
    } finally {
    setLoading(false)
    }
    }
  3. Implement proper error handling:

    const handleError = (error: PurchaseError) => {
    // Log for debugging
    console.error('IAP Error:', error)

    // Show user-friendly message
    if (error.code !== ErrorCode.E_USER_CANCELLED) {
    Alert.alert('Purchase Failed', error.message)
    }
    }

Handle App Store promoted products when users tap on them in the App Store:

const PromotedProductExample = () => {
const { promotedProductIOS, requestPurchaseOnPromotedProductIOS } = useIAP({
onPromotedProductIOS: (product) => {
console.log('Promoted product detected:', product)
},
})

useEffect(() => {
if (promotedProductIOS) {
handlePromotedProduct()
}
}, [promotedProductIOS])

const handlePromotedProduct = async () => {
try {
// Show your custom purchase UI
const confirmed = await showPurchaseConfirmation(promotedProductIOS)

if (confirmed) {
// Complete the promoted purchase
await requestPurchaseOnPromotedProductIOS()
}
} catch (error) {
console.error('Error handling promoted product:', error)
}
}

const showPurchaseConfirmation = async (product: any) => {
return new Promise((resolve) => {
Alert.alert(
'Purchase Product',
`Would you like to purchase ${product.localizedTitle} for ${product.price}?`,
[
{ text: 'Cancel', onPress: () => resolve(false), style: 'cancel' },
{ text: 'Buy', onPress: () => resolve(true) },
]
)
})
}

return <View>{/* Your regular store UI */}</View>
}

See Also