Expo InAppPurchases cannot fetch products on testflight build

  1. SDK Version: 42.0.1
  2. Platforms(Android/iOS/web/all): iOS

I am unable to fetch products products on my Testflight build.

Here is the code in question

import * as InAppPurchases from 'expo-in-app-purchases';

....

    await InAppPurchases.connectAsync()

    const { responseCode, results } = await InAppPurchases.getProductsAsync(
      Platform.selected({
        ios: ['monthly', 'yearly', 'lifetime']
      })
    )

    Sentry.Native.captureMessage(`PAYMENTSCREEN: ${responseCode, results}`)

The products on App Store Connect all have “Waiting For Review” status.

The sentry message should have been logged, but nothing shows up. I have tested to make sure sentry is logging correctly

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.