Home > Net >  Validate more than one receipt at a time from Google developer API
Validate more than one receipt at a time from Google developer API

Time:08-24

I have a react native app and using react-native-iap library to communicate with Google server to buy the subscriptions. I am using PHP to validate/auto-renewing status of receipt using Google's API i.e https://androidpublisher.googleapis.com/androidpublisher/v3/applications/{{packageName}}/purchases/subscriptions/{{subscriptionId}}/tokens/{{purchaseToken}}. But i am only able to check one subscriptions at a time. Is there any way to check auto-renew status of subscriptions in bulk rather than calling Google's API for each subscription/purchase token ?

CodePudding user response:

I've never heard of this.

What you can do though, is subscribe to real time notifications to know in real time the statuses of your subscriptions:

  • Related