Hiii
I had implemented IAP with the 2-week trial offer. One new user didn't get the trial offer even it was eligible for trial because in the StoreKit receipt response both values were false.
- is_trial_period = false
- is_in_intro_offer_period = false
We use auto-renewable subscriptions in the app
Receipt response
{ "quantity": "1",
"product_id":"com.companyName.subscription.onemonth1",
"transaction_id": "430000604899999", "original_transaction_id": "430000604899999", "purchase_date": "2022-05-17 01:30:00 Etc/GMT", "purchase_date_ms": "1652751000000", "purchase_date_pst": "2022-05-16 18:30:00 America/Los_Angeles", "original_purchase_date": "2022-05-17 01:30:03 Etc/GMT", "original_purchase_date_ms": "1652751003000", "original_purchase_date_pst": "2022-05-16 18:30:03 America/Los_Angeles",
"expires_date": "2023-05-17 01:30:00 Etc/GMT", "expires_date_ms": "1684287000000", "expires_date_pst": "2023-05-16 18:30:00 America/Los_Angeles",
"web_order_line_item_id": "430000223503827", "is_trial_period": "false",
"is_in_intro_offer_period": "false", "in_app_ownership_type": "PURCHASED", "subscription_group_identifier": "20483890" }
Any solution?
Thanks!