-
-
Notifications
You must be signed in to change notification settings - Fork 155
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CrossInAppBilling.Current.PurchaseAsync return exception "Invalid products found when querying product list" #594
Comments
But I am doing test on TestFlight. For that purpose I think I do not need to submit. Am I correct? |
It has nothing to do with the status of your app's TestFlight and subscription information. |
If you tell me your email address, I will send you a video of my settings screen. my email : [email protected] |
Are you saying to test app via TestFlight my subscription must be approved? Is there a way to test payments with sandbox account when status is not approved? |
Your subscription settings must be approved by Apple. |
I also have this issue, but I was told by apple team that first you must test them and then submit app for aproval. I still haven't managed to get the product to display. Have you managed to get them loaded in test flight? |
I have app available in test flight but I cannot test there subscription. Based on pulmuone subscription must be first approved by Apple. |
you must sign the Paid Applications Agreement. |
I have the same issue. Seems plugin is not able to pick up an in-app purchase until its approved by Apple. But in order to Approve I should initiate a new distribution which is always failing their review due to non functioning payment page |
I'm also observing the same. I only have created one in-app purchase for testing purposes. I get the "Invalid products found when querying product list" when trying to do a PurchaseAsync and when I try to do a GetProductInfoAsync. The purchase is a consumable. My code is simple.
|
Bug Information
Version Number of Plugin: 7.1.0
Device Tested On: iphone 14, ios 17.3.1 app via testflight
Steps to reproduce the Behavior
Expected Behavior
Method should allow to buy a product.
Actual Behavior
Error
Code snippet
//test01
try{
var productIdSub = "gfl_0299_1w_01";
var purchase = await CrossInAppBilling.Current.PurchaseAsync(productIdSub, ItemType.InAppPurchaseConsumable);
}
catch (InAppBillingPurchaseException purchaseEx)
{
}
//test02
try{
var productIdSub = "gfl_0299_1w_02";
var purchase = await CrossInAppBilling.Current.PurchaseAsync(productIdSub, ItemType.Subscription);
}
catch (InAppBillingPurchaseException purchaseEx)
{
}
The text was updated successfully, but these errors were encountered: